From bc0d5528a3cc210c13d41a7db05df0dc1afedcc9 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Fri, 22 Jan 2016 12:24:19 -0800 Subject: [PATCH] Rename AspNet 5 folders and files. See https://github.com/aspnet/Announcements/issues/144 for more information. --- .../AntiforgeryContext.cs | 0 .../AntiforgeryOptions.cs | 0 .../AntiforgeryOptionsSetup.cs | 0 .../AntiforgeryToken.cs | 0 .../AntiforgeryTokenSet.cs | 0 .../AntiforgeryValidationException.cs | 0 .../BinaryBlob.cs | 0 .../DefaultAntiforgery.cs | 0 .../DefaultAntiforgeryAdditionalDataProvider.cs | 0 .../DefaultAntiforgeryContextAccessor.cs | 0 .../DefaultAntiforgeryTokenGenerator.cs | 0 .../DefaultAntiforgeryTokenSerializer.cs | 0 .../DefaultAntiforgeryTokenStore.cs | 0 .../DefaultClaimUidExtractor.cs | 0 .../IAntiforgery.cs | 0 .../IAntiforgeryAdditionalDataProvider.cs | 0 .../IAntiforgeryContextAccessor.cs | 0 .../IAntiforgeryTokenGenerator.cs | 0 .../IAntiforgeryTokenSerializer.cs | 0 .../IAntiforgeryTokenStore.cs | 0 .../IClaimUidExtractor.cs | 0 .../Microsoft.AspNetCore.Antiforgery.xproj} | 0 .../Properties/AssemblyInfo.cs | 0 .../Properties/Resources.Designer.cs | 0 .../Resources.resx | 0 .../ServiceCollectionExtensions.cs | 0 .../project.json | 0 .../AntiForgerySampleTestFixture.cs | 0 .../AntiforgerySampleTest.cs | 0 .../Microsoft.AspNetCore.Antiforgery.FunctionalTests.xproj} | 0 .../project.json | 0 .../AntiforgeryOptionsSetupTest.cs | 0 .../AntiforgeryTokenTest.cs | 0 .../BinaryBlobTest.cs | 0 .../DefaultAntiforgeryTest.cs | 0 .../DefaultAntiforgeryTokenGeneratorTest.cs | 0 .../DefaultAntiforgeryTokenSerializerTest.cs | 0 .../DefaultAntiforgeryTokenStoreTest.cs | 0 .../DefaultClaimUidExtractorTest.cs | 0 .../Microsoft.AspNetCore.Antiforgery.Test.xproj} | 0 .../TestOptionsManager.cs | 0 .../project.json | 0 42 files changed, 0 insertions(+), 0 deletions(-) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryContext.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryOptions.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryOptionsSetup.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryToken.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryTokenSet.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/AntiforgeryValidationException.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/BinaryBlob.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgery.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgeryAdditionalDataProvider.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgeryContextAccessor.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgeryTokenGenerator.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgeryTokenSerializer.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultAntiforgeryTokenStore.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/DefaultClaimUidExtractor.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgery.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgeryAdditionalDataProvider.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgeryContextAccessor.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgeryTokenGenerator.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgeryTokenSerializer.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IAntiforgeryTokenStore.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/IClaimUidExtractor.cs (100%) rename src/{Microsoft.AspNet.Antiforgery/Microsoft.AspNet.Antiforgery.xproj => Microsoft.AspNetCore.Antiforgery/Microsoft.AspNetCore.Antiforgery.xproj} (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/Properties/AssemblyInfo.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/Properties/Resources.Designer.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/Resources.resx (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/ServiceCollectionExtensions.cs (100%) rename src/{Microsoft.AspNet.Antiforgery => Microsoft.AspNetCore.Antiforgery}/project.json (100%) rename test/{Microsoft.AspNet.Antiforgery.FunctionalTests => Microsoft.AspNetCore.Antiforgery.FunctionalTests}/AntiForgerySampleTestFixture.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.FunctionalTests => Microsoft.AspNetCore.Antiforgery.FunctionalTests}/AntiforgerySampleTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.FunctionalTests/Microsoft.AspNet.Antiforgery.FunctionalTests.xproj => Microsoft.AspNetCore.Antiforgery.FunctionalTests/Microsoft.AspNetCore.Antiforgery.FunctionalTests.xproj} (100%) rename test/{Microsoft.AspNet.Antiforgery.FunctionalTests => Microsoft.AspNetCore.Antiforgery.FunctionalTests}/project.json (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/AntiforgeryOptionsSetupTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/AntiforgeryTokenTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/BinaryBlobTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/DefaultAntiforgeryTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/DefaultAntiforgeryTokenGeneratorTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/DefaultAntiforgeryTokenSerializerTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/DefaultAntiforgeryTokenStoreTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/DefaultClaimUidExtractorTest.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test/Microsoft.AspNet.Antiforgery.Test.xproj => Microsoft.AspNetCore.Antiforgery.Test/Microsoft.AspNetCore.Antiforgery.Test.xproj} (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/TestOptionsManager.cs (100%) rename test/{Microsoft.AspNet.Antiforgery.Test => Microsoft.AspNetCore.Antiforgery.Test}/project.json (100%) diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryContext.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryContext.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryContext.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryContext.cs diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryOptions.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryOptions.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryOptions.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryOptions.cs diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryOptionsSetup.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryOptionsSetup.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryOptionsSetup.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryOptionsSetup.cs diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryToken.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryToken.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryToken.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryToken.cs diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryTokenSet.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryTokenSet.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryTokenSet.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryTokenSet.cs diff --git a/src/Microsoft.AspNet.Antiforgery/AntiforgeryValidationException.cs b/src/Microsoft.AspNetCore.Antiforgery/AntiforgeryValidationException.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/AntiforgeryValidationException.cs rename to src/Microsoft.AspNetCore.Antiforgery/AntiforgeryValidationException.cs diff --git a/src/Microsoft.AspNet.Antiforgery/BinaryBlob.cs b/src/Microsoft.AspNetCore.Antiforgery/BinaryBlob.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/BinaryBlob.cs rename to src/Microsoft.AspNetCore.Antiforgery/BinaryBlob.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgery.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgery.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgery.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgery.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryAdditionalDataProvider.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryAdditionalDataProvider.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryAdditionalDataProvider.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryAdditionalDataProvider.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryContextAccessor.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryContextAccessor.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryContextAccessor.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryContextAccessor.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenGenerator.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenGenerator.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenGenerator.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenGenerator.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenSerializer.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenSerializer.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenSerializer.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenSerializer.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenStore.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenStore.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultAntiforgeryTokenStore.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultAntiforgeryTokenStore.cs diff --git a/src/Microsoft.AspNet.Antiforgery/DefaultClaimUidExtractor.cs b/src/Microsoft.AspNetCore.Antiforgery/DefaultClaimUidExtractor.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/DefaultClaimUidExtractor.cs rename to src/Microsoft.AspNetCore.Antiforgery/DefaultClaimUidExtractor.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgery.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgery.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgeryAdditionalDataProvider.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryAdditionalDataProvider.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgeryAdditionalDataProvider.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryAdditionalDataProvider.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgeryContextAccessor.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryContextAccessor.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgeryContextAccessor.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryContextAccessor.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenGenerator.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenGenerator.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenGenerator.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenGenerator.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenSerializer.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenSerializer.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenSerializer.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenSerializer.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenStore.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenStore.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IAntiforgeryTokenStore.cs rename to src/Microsoft.AspNetCore.Antiforgery/IAntiforgeryTokenStore.cs diff --git a/src/Microsoft.AspNet.Antiforgery/IClaimUidExtractor.cs b/src/Microsoft.AspNetCore.Antiforgery/IClaimUidExtractor.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/IClaimUidExtractor.cs rename to src/Microsoft.AspNetCore.Antiforgery/IClaimUidExtractor.cs diff --git a/src/Microsoft.AspNet.Antiforgery/Microsoft.AspNet.Antiforgery.xproj b/src/Microsoft.AspNetCore.Antiforgery/Microsoft.AspNetCore.Antiforgery.xproj similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/Microsoft.AspNet.Antiforgery.xproj rename to src/Microsoft.AspNetCore.Antiforgery/Microsoft.AspNetCore.Antiforgery.xproj diff --git a/src/Microsoft.AspNet.Antiforgery/Properties/AssemblyInfo.cs b/src/Microsoft.AspNetCore.Antiforgery/Properties/AssemblyInfo.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/Properties/AssemblyInfo.cs rename to src/Microsoft.AspNetCore.Antiforgery/Properties/AssemblyInfo.cs diff --git a/src/Microsoft.AspNet.Antiforgery/Properties/Resources.Designer.cs b/src/Microsoft.AspNetCore.Antiforgery/Properties/Resources.Designer.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/Properties/Resources.Designer.cs rename to src/Microsoft.AspNetCore.Antiforgery/Properties/Resources.Designer.cs diff --git a/src/Microsoft.AspNet.Antiforgery/Resources.resx b/src/Microsoft.AspNetCore.Antiforgery/Resources.resx similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/Resources.resx rename to src/Microsoft.AspNetCore.Antiforgery/Resources.resx diff --git a/src/Microsoft.AspNet.Antiforgery/ServiceCollectionExtensions.cs b/src/Microsoft.AspNetCore.Antiforgery/ServiceCollectionExtensions.cs similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/ServiceCollectionExtensions.cs rename to src/Microsoft.AspNetCore.Antiforgery/ServiceCollectionExtensions.cs diff --git a/src/Microsoft.AspNet.Antiforgery/project.json b/src/Microsoft.AspNetCore.Antiforgery/project.json similarity index 100% rename from src/Microsoft.AspNet.Antiforgery/project.json rename to src/Microsoft.AspNetCore.Antiforgery/project.json diff --git a/test/Microsoft.AspNet.Antiforgery.FunctionalTests/AntiForgerySampleTestFixture.cs b/test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/AntiForgerySampleTestFixture.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.FunctionalTests/AntiForgerySampleTestFixture.cs rename to test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/AntiForgerySampleTestFixture.cs diff --git a/test/Microsoft.AspNet.Antiforgery.FunctionalTests/AntiforgerySampleTest.cs b/test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/AntiforgerySampleTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.FunctionalTests/AntiforgerySampleTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/AntiforgerySampleTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.FunctionalTests/Microsoft.AspNet.Antiforgery.FunctionalTests.xproj b/test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/Microsoft.AspNetCore.Antiforgery.FunctionalTests.xproj similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.FunctionalTests/Microsoft.AspNet.Antiforgery.FunctionalTests.xproj rename to test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/Microsoft.AspNetCore.Antiforgery.FunctionalTests.xproj diff --git a/test/Microsoft.AspNet.Antiforgery.FunctionalTests/project.json b/test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/project.json similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.FunctionalTests/project.json rename to test/Microsoft.AspNetCore.Antiforgery.FunctionalTests/project.json diff --git a/test/Microsoft.AspNet.Antiforgery.Test/AntiforgeryOptionsSetupTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/AntiforgeryOptionsSetupTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/AntiforgeryOptionsSetupTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/AntiforgeryOptionsSetupTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/AntiforgeryTokenTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/AntiforgeryTokenTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/AntiforgeryTokenTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/AntiforgeryTokenTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/BinaryBlobTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/BinaryBlobTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/BinaryBlobTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/BinaryBlobTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenGeneratorTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenGeneratorTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenGeneratorTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenGeneratorTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenSerializerTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenSerializerTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenSerializerTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenSerializerTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenStoreTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenStoreTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/DefaultAntiforgeryTokenStoreTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/DefaultAntiforgeryTokenStoreTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/DefaultClaimUidExtractorTest.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/DefaultClaimUidExtractorTest.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/DefaultClaimUidExtractorTest.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/DefaultClaimUidExtractorTest.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/Microsoft.AspNet.Antiforgery.Test.xproj b/test/Microsoft.AspNetCore.Antiforgery.Test/Microsoft.AspNetCore.Antiforgery.Test.xproj similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/Microsoft.AspNet.Antiforgery.Test.xproj rename to test/Microsoft.AspNetCore.Antiforgery.Test/Microsoft.AspNetCore.Antiforgery.Test.xproj diff --git a/test/Microsoft.AspNet.Antiforgery.Test/TestOptionsManager.cs b/test/Microsoft.AspNetCore.Antiforgery.Test/TestOptionsManager.cs similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/TestOptionsManager.cs rename to test/Microsoft.AspNetCore.Antiforgery.Test/TestOptionsManager.cs diff --git a/test/Microsoft.AspNet.Antiforgery.Test/project.json b/test/Microsoft.AspNetCore.Antiforgery.Test/project.json similarity index 100% rename from test/Microsoft.AspNet.Antiforgery.Test/project.json rename to test/Microsoft.AspNetCore.Antiforgery.Test/project.json