minor changes

vnext
Paul Schneider 7 years ago
parent 19c287b482
commit 3f1be1465d
5 changed files with 5011 additions and 18 deletions

@ -1,6 +1,6 @@
MAKE=make
SUBDIRS=Yavsc.Abstract Yavsc
SUBDIRS=Yavsc.Abstract Yavsc.Server Yavsc
all: $(SUBDIRS)

@ -4,6 +4,6 @@ namespace Yavsc.Server.Helpers
{
// FIXME BUG [fr] DependencyInjection Pourquoi ce champ ne pourrait pas devenir une propriété ?
// : casse à l'execution d'un controlleur, se plaignant d'une valeur nule
public static string ConnectionString = null;
public static string ConnectionString = "Server=Your-Server-Adress;Port=5432;Database=YourDadabaseName;Username=YourDatabaseUserName;Password=YourPassword;";
}
}
}

@ -37,7 +37,7 @@
"contrib"
]
},
"copyToOutput": [
"embed": [
"Resources/**/*.resx"
]
},
@ -66,6 +66,7 @@
"Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final"
},
"frameworks": {
"dnx451": {},
"net451": {
"frameworkAssemblies": {
"System.ComponentModel.DataAnnotations": "4.0.0",
@ -76,5 +77,7 @@
"System": "4.0.0.0"
}
}
},
"commands": {
}
}
}

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
{
"version": "1.0.1-*",
"authors": [
"Paul Schneider"
"Paul Schneider <paul@pschneider.fr>"
],
"packOptions": {
"repository": {

Loading…