Skip to content

Commit

Permalink
#99 fixing client libs
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmelendez committed Nov 5, 2022
1 parent 5c50da4 commit 17f5be9
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/templates/StarterWebMvc-CSharp/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"IdentityAzureTable": {
"IdentityConfiguration": {
"TablePrefix": "v6",
"TablePrefix": "v7",
"StorageConnectionString": "UseDevelopmentStorage=true;",
"IndexTableName": "AspNetIndex",
"RoleTableName": "AspNetRoles",
Expand Down
44 changes: 44 additions & 0 deletions templates/templates/StarterWebMvc-CSharp/libman.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"version": "1.0",
"defaultProvider": "cdnjs",
"libraries": [
{
"provider": "unpkg",
"library": "jquery-validation@1.19.5",
"destination": "wwwroot/lib/jquery-validation/",
"files": [
"dist/jquery.validate.js",
"dist/jquery.validate.min.js"
]
},
{
"provider": "unpkg",
"library": "bootstrap@5.2.2",
"destination": "wwwroot/lib/bootstrap/",
"files": [
"dist/css/bootstrap.css",
"dist/css/bootstrap.css.map",
"dist/css/bootstrap.min.css",
"dist/css/bootstrap.min.css.map",
"dist/js/bootstrap.bundle.js",
"dist/js/bootstrap.bundle.js.map",
"dist/js/bootstrap.bundle.min.js",
"dist/js/bootstrap.bundle.min.js.map",
"dist/js/bootstrap.js",
"dist/js/bootstrap.js.map",
"dist/js/bootstrap.min.js",
"dist/js/bootstrap.min.js.map"
]
},
{
"provider": "unpkg",
"library": "jquery@3.6.1",
"destination": "wwwroot/lib/jquery/",
"files": [
"dist/jquery.js",
"dist/jquery.min.js",
"dist/jquery.min.map"
]
}
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"IdentityAzureTable": {
"IdentityConfiguration": {
"TablePrefix": "v6",
"TablePrefix": "v7",
"StorageConnectionString": "UseDevelopmentStorage=true;",
"IndexTableName": "AspNetIndex",
"RoleTableName": "AspNetRoles",
Expand Down
44 changes: 44 additions & 0 deletions templates/templates/StarterWebRazorPages-CSharp/libman.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"version": "1.0",
"defaultProvider": "cdnjs",
"libraries": [
{
"provider": "unpkg",
"library": "jquery-validation@1.19.5",
"destination": "wwwroot/lib/jquery-validation/",
"files": [
"dist/jquery.validate.js",
"dist/jquery.validate.min.js"
]
},
{
"provider": "unpkg",
"library": "bootstrap@5.2.2",
"destination": "wwwroot/lib/bootstrap/",
"files": [
"dist/css/bootstrap.css",
"dist/css/bootstrap.css.map",
"dist/css/bootstrap.min.css",
"dist/css/bootstrap.min.css.map",
"dist/js/bootstrap.bundle.js",
"dist/js/bootstrap.bundle.js.map",
"dist/js/bootstrap.bundle.min.js",
"dist/js/bootstrap.bundle.min.js.map",
"dist/js/bootstrap.js",
"dist/js/bootstrap.js.map",
"dist/js/bootstrap.min.js",
"dist/js/bootstrap.min.js.map"
]
},
{
"provider": "unpkg",
"library": "jquery@3.6.1",
"destination": "wwwroot/lib/jquery/",
"files": [
"dist/jquery.js",
"dist/jquery.min.js",
"dist/jquery.min.map"
]
}
]
}

0 comments on commit 17f5be9

Please sign in to comment.