Skip to content
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.

Commit

Permalink
Merge branch 'release' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed May 2, 2016
2 parents 453e482 + 05602d3 commit f65c3db
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
12 changes: 7 additions & 5 deletions samples/AntiforgerySample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Newtonsoft.Json": "8.0.3"
},
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"frameworks": {
Expand All @@ -27,10 +27,12 @@
}
}
},
"content": [
"wwwroot",
"web.config"
],
"publishOptions": {
"include": [
"wwwroot",
"web.config"
]
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
"version": "1.0.0-*",
Expand Down
18 changes: 10 additions & 8 deletions src/Microsoft.AspNetCore.Antiforgery/project.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"description": "An antiforgery system for ASP.NET Core designed to generate and validate tokens to prevent Cross-Site Request Forgery attacks.",
"tags": [
"aspnetcore",
"antiforgery"
],
"version": "1.0.0-*",
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
"nowarn": [
"CS1591"
],
"xmlDoc": true
},
"repository": {
"type": "git",
"url": "git://github.com/aspnet/antiforgery"
"packOptions": {
"repository": {
"type": "git",
"url": "git://github.com/aspnet/antiforgery"
},
"tags": [
"aspnetcore",
"antiforgery"
]
},
"dependencies": {
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"AntiforgerySample": "1.0.0-*",
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
Expand All @@ -15,7 +16,6 @@
},
"moq.netcore": "4.4.0-beta8",
"System.Net.Http": "4.0.1-*",
"dotnet-test-xunit": "1.0.0-*",
"System.Diagnostics.Process": "4.1.0-*"
},
"imports": [
Expand Down
4 changes: 2 additions & 2 deletions test/Microsoft.AspNetCore.Antiforgery.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk"
},
"dependencies": {
"dotnet-test-xunit": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Antiforgery": "1.0.0-*",
"Microsoft.AspNetCore.Http": "1.0.0-*",
Expand All @@ -22,7 +23,6 @@
"type": "platform"
},
"moq.netcore": "4.4.0-beta8",
"dotnet-test-xunit": "1.0.0-*",
"System.Diagnostics.Process": "4.1.0-*",
"System.Diagnostics.TraceSource": "4.0.0-*"
},
Expand Down

0 comments on commit f65c3db

Please sign in to comment.