minor changes

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

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

@ -4,6 +4,6 @@ namespace Yavsc.Server.Helpers
{ {
// FIXME BUG [fr] DependencyInjection Pourquoi ce champ ne pourrait pas devenir une propriété ? // 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 // : 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" "contrib"
] ]
}, },
"copyToOutput": [ "embed": [
"Resources/**/*.resx" "Resources/**/*.resx"
] ]
}, },
@ -66,6 +66,7 @@
"Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final" "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final"
}, },
"frameworks": { "frameworks": {
"dnx451": {},
"net451": { "net451": {
"frameworkAssemblies": { "frameworkAssemblies": {
"System.ComponentModel.DataAnnotations": "4.0.0", "System.ComponentModel.DataAnnotations": "4.0.0",
@ -76,5 +77,7 @@
"System": "4.0.0.0" "System": "4.0.0.0"
} }
} }
},
"commands": {
} }
} }

File diff suppressed because it is too large Load Diff

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

Loading…