diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index c660b69e10..b153ab1515 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -1,11 +1,5 @@ { - "adx-nonshipping": { - "rules": [], - "packages": { - "Microsoft.AspNetCore.DataProtection.Sources": { } - } - }, - "Default": { // Rules to run for packages not listed in any other set. + "Default": { "rules": [ "DefaultCompositeRule" ] diff --git a/src/Microsoft.AspNetCore.DataProtection.Sources/EncodingUtil.cs b/shared/EncodingUtil.cs similarity index 100% rename from src/Microsoft.AspNetCore.DataProtection.Sources/EncodingUtil.cs rename to shared/EncodingUtil.cs diff --git a/src/Microsoft.AspNetCore.DataProtection.Sources/ExceptionExtensions.cs b/shared/ExceptionExtensions.cs similarity index 100% rename from src/Microsoft.AspNetCore.DataProtection.Sources/ExceptionExtensions.cs rename to shared/ExceptionExtensions.cs diff --git a/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json b/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json index ce821ce104..0544786388 100644 --- a/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.Abstractions/project.json @@ -12,10 +12,6 @@ ] }, "dependencies": { - "Microsoft.AspNetCore.DataProtection.Sources": { - "type": "build", - "target": "project" - }, "Microsoft.Extensions.WebEncoders.Sources": { "type": "build", "version": "1.2.0-*" @@ -36,6 +32,7 @@ "nowarn": [ "CS1591" ], - "xmlDoc": true + "xmlDoc": true, + "compile": "../../shared/*.cs" } } \ No newline at end of file diff --git a/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json b/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json index 905bcb1002..a8117e8488 100644 --- a/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json +++ b/src/Microsoft.AspNetCore.DataProtection.Extensions/project.json @@ -15,10 +15,6 @@ "Microsoft.AspNetCore.DataProtection": { "target": "project" }, - "Microsoft.AspNetCore.DataProtection.Sources": { - "type": "build", - "target": "project" - }, "Microsoft.Extensions.DependencyInjection": "1.2.0-*", "NETStandard.Library": "1.6.2-*" }, @@ -32,6 +28,7 @@ "nowarn": [ "CS1591" ], - "xmlDoc": true + "xmlDoc": true, + "compile": "../../shared/*.cs" } } \ No newline at end of file diff --git a/src/Microsoft.AspNetCore.DataProtection.Sources/Microsoft.AspNetCore.DataProtection.Sources.xproj b/src/Microsoft.AspNetCore.DataProtection.Sources/Microsoft.AspNetCore.DataProtection.Sources.xproj deleted file mode 100644 index 9efcc1390d..0000000000 --- a/src/Microsoft.AspNetCore.DataProtection.Sources/Microsoft.AspNetCore.DataProtection.Sources.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 3277bb22-033f-4010-8131-a515b910caad - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.AspNetCore.DataProtection.Sources/project.json b/src/Microsoft.AspNetCore.DataProtection.Sources/project.json deleted file mode 100644 index 3190dfd233..0000000000 --- a/src/Microsoft.AspNetCore.DataProtection.Sources/project.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "1.2.0-*", - "description": "ASP.NET Core data protection shared code.", - "packOptions": { - "repository": { - "type": "git", - "url": "git://github.com/aspnet/dataprotection" - }, - "tags": [ - "aspnetcore", - "dataprotection" - ] - }, - "dependencies": { - "NETStandard.Library": "1.6.2-*" - }, - "frameworks": { - "net451": {}, - "netstandard1.3": {} - }, - "shared": "**\\*.cs", - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" - } -} \ No newline at end of file diff --git a/src/Microsoft.AspNetCore.DataProtection/project.json b/src/Microsoft.AspNetCore.DataProtection/project.json index a9877b4304..ce3c0da220 100644 --- a/src/Microsoft.AspNetCore.DataProtection/project.json +++ b/src/Microsoft.AspNetCore.DataProtection/project.json @@ -18,10 +18,6 @@ "Microsoft.AspNetCore.DataProtection.Abstractions": { "target": "project" }, - "Microsoft.AspNetCore.DataProtection.Sources": { - "type": "build", - "target": "project" - }, "Microsoft.AspNetCore.Hosting.Abstractions": "1.2.0-*", "Microsoft.Extensions.DependencyInjection.Abstractions": "1.2.0-*", "Microsoft.Extensions.Logging.Abstractions": "1.2.0-*", @@ -54,6 +50,7 @@ "nowarn": [ "CS1591" ], - "xmlDoc": true + "xmlDoc": true, + "compile": "../../shared/*.cs" } } \ No newline at end of file