├── .gitignore ├── .vs ├── TokenAuthWebApiCore │ └── v15 │ │ └── .suo └── config │ └── applicationhost.config ├── README.md ├── TokenAuthWebApiCore.sln ├── VS2015 └── TokenAuthWebApiCore.Server │ ├── .vs │ ├── TokenAuthWebApiCore.Server │ │ └── v14 │ │ │ └── .suo │ ├── config │ │ └── applicationhost.config │ └── restore.dg │ ├── TokenAuthWebApiCore.Server.sln │ ├── global.json │ └── src │ └── TokenAuthWebApiCore.Server │ ├── Controllers │ ├── AuthController.cs │ └── ValuesController.cs │ ├── Filters │ └── ValidateFormAttribute.cs │ ├── Migrations │ ├── 20170521163846_init.Designer.cs │ ├── 20170521163846_init.cs │ └── SecurityContextModelSnapshot.cs │ ├── Models │ ├── LoginViewModel.cs │ ├── MyRole.cs │ ├── MyUser.cs │ └── RegisterViewModel.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties │ └── launchSettings.json │ ├── SecurityContext.cs │ ├── Service References │ └── Application Insights │ │ └── ConnectedService.json │ ├── Startup.cs │ ├── TokenAuthWebApiCore.Server.xproj │ ├── TokenAuthWebApiCore.Server.xproj.user │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ ├── Debug │ │ └── netcoreapp1.0 │ │ │ ├── TokenAuthWebApiCore.Server.deps.json │ │ │ ├── TokenAuthWebApiCore.Server.dll │ │ │ ├── TokenAuthWebApiCore.Server.pdb │ │ │ ├── TokenAuthWebApiCore.Server.runtimeconfig.dev.json │ │ │ └── TokenAuthWebApiCore.Server.runtimeconfig.json │ └── src │ │ └── TokenAuthWebApiCore.Server │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp1.0 │ │ │ ├── TokenAuthWebApiCore.Server.deps.json │ │ │ ├── TokenAuthWebApiCore.Server.dll │ │ │ ├── TokenAuthWebApiCore.Server.pdb │ │ │ ├── TokenAuthWebApiCore.Server.runtimeconfig.dev.json │ │ │ └── TokenAuthWebApiCore.Server.runtimeconfig.json │ │ └── obj │ │ └── Debug │ │ └── netcoreapp1.0 │ │ ├── .IncrementalCache │ │ ├── .SDKVersion │ │ ├── TokenAuthWebApiCore.Serverdotnet-compile.deps.json │ │ ├── dotnet-compile-csc.rsp │ │ ├── dotnet-compile.assemblyinfo.cs │ │ └── dotnet-compile.rsp │ ├── obj │ └── Debug │ │ └── netcoreapp1.0 │ │ ├── .IncrementalCache │ │ ├── .SDKVersion │ │ ├── TokenAuthWebApiCore.Serverdotnet-compile.deps.json │ │ ├── dotnet-compile-csc.rsp │ │ ├── dotnet-compile.assemblyinfo.cs │ │ └── dotnet-compile.rsp │ ├── project.json │ ├── project.lock.json │ └── web.config └── VS2017 ├── .vs ├── TokenAuthWebApiCore │ └── v15 │ │ └── .suo └── config │ └── applicationhost.config ├── TokenAuthWebApiCore.Server.IntegrationTest ├── AuthController_RegisterUserTest.cs ├── AuthController_TokenTest.cs ├── Data │ ├── base.sql │ ├── getToken - Copy.json │ ├── getToken.json │ └── register.json ├── Setup │ ├── JwToken.cs │ ├── PriorityOrderer.cs │ ├── TestFixture.cs │ └── TestStartup.cs ├── TokenAuthWebApiCore.Server.IntegrationTest.csproj ├── ValuesController_AuthorizedTest .cs ├── ValuesController_UnauthorizedTest.cs ├── appsettings.json └── bin │ └── Debug │ └── netcoreapp1.1 │ ├── TokenAuthWebApiCore.Server.IntegrationTest.deps.json │ ├── TokenAuthWebApiCore.Server.IntegrationTest.dll │ ├── TokenAuthWebApiCore.Server.IntegrationTest.pdb │ ├── TokenAuthWebApiCore.Server.IntegrationTest.runtimeconfig.dev.json │ ├── TokenAuthWebApiCore.Server.IntegrationTest.runtimeconfig.json │ ├── TokenAuthWebApiCore.Server.dll │ ├── TokenAuthWebApiCore.Server.pdb │ ├── appsettings.json │ ├── xunit.runner.reporters.netstandard15.dll │ ├── xunit.runner.utility.netstandard15.dll │ └── xunit.runner.visualstudio.dotnetcore.testadapter.dll ├── TokenAuthWebApiCore.Server ├── Controllers │ ├── AuthController.cs │ └── ValuesController.cs ├── Filters │ └── ValidateFormAttribute.cs ├── Migrations │ ├── 20170521163846_init.Designer.cs │ ├── 20170521163846_init.cs │ └── SecurityContextModelSnapshot.cs ├── Models │ ├── LoginViewModel.cs │ ├── MyRole.cs │ ├── MyUser.cs │ └── RegisterViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SecurityContext.cs ├── Startup.cs ├── TokenAuthWebApiCore.Server.csproj ├── TokenAuthWebApiCore.Server.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp1.1 │ │ ├── Angular2TokenAuthWebApiCore.Server.deps.json │ │ ├── Angular2TokenAuthWebApiCore.Server.dll │ │ ├── Angular2TokenAuthWebApiCore.Server.pdb │ │ ├── Angular2TokenAuthWebApiCore.Server.runtimeconfig.dev.json │ │ ├── Angular2TokenAuthWebApiCore.Server.runtimeconfig.json │ │ ├── TokenAuthWebApiCore.Server.deps.json │ │ ├── TokenAuthWebApiCore.Server.dll │ │ ├── TokenAuthWebApiCore.Server.pdb │ │ ├── TokenAuthWebApiCore.Server.runtimeconfig.dev.json │ │ └── TokenAuthWebApiCore.Server.runtimeconfig.json └── obj │ ├── Angular2TokenAuthWebApiCore.Server.csproj.nuget.g.props │ ├── Angular2TokenAuthWebApiCore.Server.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp1.1 │ │ ├── Angular2TokenAuthWebApiCore.Server.AssemblyInfo.cs │ │ ├── Angular2TokenAuthWebApiCore.Server.csproj.FileListAbsolute.txt │ │ ├── Angular2TokenAuthWebApiCore.Server.csprojResolveAssemblyReference.cache │ │ ├── Angular2TokenAuthWebApiCore.Server.dll │ │ ├── Angular2TokenAuthWebApiCore.Server.pdb │ │ ├── CoreCompileInputs.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── TokenAuthWebApiCore.Server.AssemblyInfo.cs │ │ ├── TokenAuthWebApiCore.Server.csproj.FileListAbsolute.txt │ │ ├── TokenAuthWebApiCore.Server.dll │ │ └── TokenAuthWebApiCore.Server.pdb │ ├── TokenAuthWebApiCore.Server.csproj.nuget.g.props │ ├── TokenAuthWebApiCore.Server.csproj.nuget.g.targets │ └── project.assets.json ├── TokenAuthWebApiCore.sln └── packages ├── Microsoft.Net.Compilers.1.3.2 ├── Microsoft.Net.Compilers.1.3.2.nupkg ├── ThirdPartyNotices.rtf ├── build │ └── Microsoft.Net.Compilers.props └── tools │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ ├── Microsoft.CSharp.Core.targets │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ ├── Microsoft.DiaSymReader.Native.x86.dll │ ├── Microsoft.VisualBasic.Core.targets │ ├── System.AppContext.dll │ ├── System.Collections.Immutable.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.Reflection.Metadata.dll │ ├── VBCSCompiler.exe │ ├── VBCSCompiler.exe.config │ ├── csc.exe │ ├── csc.exe.config │ ├── csc.rsp │ ├── csi.exe │ ├── csi.rsp │ ├── vbc.exe │ ├── vbc.exe.config │ └── vbc.rsp ├── Microsoft.TypeScript.Compiler.2.3.3 ├── License.htm ├── Microsoft.TypeScript.Compiler.2.3.3.nupkg └── tools │ ├── chakracore.dll │ ├── lib.d.ts │ ├── lib.dom.d.ts │ ├── lib.dom.iterable.d.ts │ ├── lib.es2015.collection.d.ts │ ├── lib.es2015.core.d.ts │ ├── lib.es2015.d.ts │ ├── lib.es2015.generator.d.ts │ ├── lib.es2015.iterable.d.ts │ ├── lib.es2015.promise.d.ts │ ├── lib.es2015.proxy.d.ts │ ├── lib.es2015.reflect.d.ts │ ├── lib.es2015.symbol.d.ts │ ├── lib.es2015.symbol.wellknown.d.ts │ ├── lib.es2016.array.include.d.ts │ ├── lib.es2016.d.ts │ ├── lib.es2017.d.ts │ ├── lib.es2017.object.d.ts │ ├── lib.es5.d.ts │ ├── lib.es6.d.ts │ ├── lib.scripthost.d.ts │ ├── lib.webworker.d.ts │ ├── tsc.exe │ └── tsc.js ├── Microsoft.TypeScript.MSBuild.2.3.3 ├── Microsoft.TypeScript.MSBuild.2.3.3.nupkg ├── build │ ├── Microsoft.TypeScript.MSBuild.props │ └── Microsoft.TypeScript.MSBuild.targets └── tools │ ├── Microsoft.TypeScript.Default.props │ ├── Microsoft.TypeScript.targets │ ├── net45 │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ └── TypeScript.Tasks.dll │ ├── netstandard1.3 │ └── TypeScript.Tasks.dll │ └── tsc │ ├── chakracore.dll │ ├── cs │ └── diagnosticMessages.generated.json │ ├── de │ └── diagnosticMessages.generated.json │ ├── en │ └── diagnosticMessages.generated.json │ ├── es │ └── diagnosticMessages.generated.json │ ├── fr │ └── diagnosticMessages.generated.json │ ├── it │ └── diagnosticMessages.generated.json │ ├── ja │ └── diagnosticMessages.generated.json │ ├── ko │ └── diagnosticMessages.generated.json │ ├── lib.d.ts │ ├── lib.dom.d.ts │ ├── lib.dom.iterable.d.ts │ ├── lib.es2015.collection.d.ts │ ├── lib.es2015.core.d.ts │ ├── lib.es2015.d.ts │ ├── lib.es2015.generator.d.ts │ ├── lib.es2015.iterable.d.ts │ ├── lib.es2015.promise.d.ts │ ├── lib.es2015.proxy.d.ts │ ├── lib.es2015.reflect.d.ts │ ├── lib.es2015.symbol.d.ts │ ├── lib.es2015.symbol.wellknown.d.ts │ ├── lib.es2016.array.include.d.ts │ ├── lib.es2016.d.ts │ ├── lib.es2016.full.d.ts │ ├── lib.es2017.d.ts │ ├── lib.es2017.full.d.ts │ ├── lib.es2017.object.d.ts │ ├── lib.es2017.sharedmemory.d.ts │ ├── lib.es2017.string.d.ts │ ├── lib.es5.d.ts │ ├── lib.es6.d.ts │ ├── lib.esnext.asynciterable.d.ts │ ├── lib.esnext.d.ts │ ├── lib.esnext.full.d.ts │ ├── lib.scripthost.d.ts │ ├── lib.webworker.d.ts │ ├── pl │ └── diagnosticMessages.generated.json │ ├── pt-BR │ └── diagnosticMessages.generated.json │ ├── ru │ └── diagnosticMessages.generated.json │ ├── tr │ └── diagnosticMessages.generated.json │ ├── tsc.exe │ ├── tsc.js │ ├── zh-CN │ └── diagnosticMessages.generated.json │ └── zh-TW │ └── diagnosticMessages.generated.json └── TypeScript.MSBuildTask.1.7.3 ├── Readme.txt ├── TypeScript.MSBuildTask.1.7.3.nupkg └── tools ├── Install.ps1 ├── MSBuild └── Microsoft │ └── VisualStudio │ ├── v12.0 │ └── TypeScript │ │ ├── Microsoft.TypeScript.Default.props │ │ ├── Microsoft.TypeScript.jsproj.targets │ │ ├── Microsoft.TypeScript.targets │ │ ├── TypeScript.Tasks.dll │ │ ├── cs │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── de │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── en │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── es │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── fr │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── it │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── ja │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── ko │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── pl │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── pt-BR │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── ru │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── tr │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ ├── zh-Hans │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ │ └── zh-Hant │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ └── v14.0 │ ├── AppxPackage │ ├── Add-AppDevPackage.ps1 │ ├── Add-AppDevPackage.resources │ │ ├── Add-AppDevPackage.psd1 │ │ ├── cs-CZ │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── de-DE │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── en-US │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── es-ES │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── fr-FR │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── it-IT │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── ja-JP │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── ko-KR │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── pl-PL │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── pt-BR │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── ru-RU │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── tr-TR │ │ │ └── Add-AppDevPackage.psd1 │ │ ├── zh-CN │ │ │ └── Add-AppDevPackage.psd1 │ │ └── zh-TW │ │ │ └── Add-AppDevPackage.psd1 │ ├── Microsoft.AppxPackage.Targets │ ├── Microsoft.Build.AppxPackage.dll │ ├── Microsoft.VisualStudio.ArchitectureTools.PEReader.dll │ └── PDBCopy.exe │ ├── AspNet │ ├── Microsoft.Web.AspNet.props │ └── Microsoft.Web.AspNet.targets │ ├── BuildInfo │ ├── Microsoft.VisualStudio.ReleaseManagement.BuildInfo.targets │ └── Microsoft.VisualStudio.ReleaseManagement.BuildInfoTasks.dll │ ├── CodeAnalysis │ ├── Microsoft.CodeAnalysis.Targets │ └── fxcoptask.dll │ ├── CodeSharing │ ├── Microsoft.CodeSharing.CSharp.targets │ ├── Microsoft.CodeSharing.Common.Default.props │ ├── Microsoft.CodeSharing.Common.props │ ├── Microsoft.CodeSharing.Common.targets │ ├── Microsoft.CodeSharing.VC.targets │ ├── Microsoft.CodeSharing.VisualBasic.targets │ ├── Microsoft.SharedProject.CSharp.targets │ ├── Microsoft.SharedProject.Common.targets │ └── en-US │ │ ├── CSharp.General.BrowseObject.xaml │ │ ├── CSharp.General.xaml │ │ ├── VisualBasic.General.BrowseObject.xaml │ │ └── VisualBasic.General.xaml │ ├── DNX │ ├── Microsoft.DNX.Tasks.dll │ ├── Microsoft.DNX.props │ ├── Microsoft.DNX.targets │ ├── Newtonsoft.Json.dll │ └── en-US │ │ ├── Content.xaml │ │ ├── EmbeddedResource.xaml │ │ ├── ProjectDebugger.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ResolvedDesignTimeHostReferences.xaml │ │ ├── csharp.browseobject.xaml │ │ ├── csharp.xaml │ │ ├── debugger_general.xaml │ │ ├── folder.xaml │ │ ├── general.browseobject.xaml │ │ ├── general.xaml │ │ ├── general_file.xaml │ │ ├── none.xaml │ │ ├── scc.xaml │ │ └── typescript.xaml │ ├── Deployment │ ├── 1.0 │ │ ├── DeploymentProject.targets │ │ └── Rules │ │ │ ├── Content.xaml │ │ │ ├── Folder.xaml │ │ │ ├── General.BrowseObject.xaml │ │ │ ├── General.xaml │ │ │ ├── None.xaml │ │ │ ├── ProjectItemsSchema.xaml │ │ │ ├── ProjectReference.xaml │ │ │ ├── ResolvedProjectReference.xaml │ │ │ └── SCC.xaml │ └── 1.1 │ │ ├── DeploymentProject.targets │ │ └── Rules │ │ ├── Content.xaml │ │ ├── Folder.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ └── SCC.xaml │ ├── FSharp │ ├── Microsoft.FSharp.targets │ └── Microsoft.Portable.FSharp.targets │ ├── JavaScript │ ├── DeployableItemPath.xaml │ ├── Folder.xaml │ ├── Microsoft.CodeSharing.JavaScript.targets │ ├── Microsoft.VisualStudio.JavaScript.Common.targets │ ├── Microsoft.VisualStudio.JavaScript.Project.BuildTask.dll │ ├── Microsoft.VisualStudio.JavaScript.UAP.targets │ ├── Microsoft.VisualStudio.JavaScript.Windows.targets │ ├── Microsoft.VisualStudio.JavaScript.WindowsPhone.targets │ ├── Microsoft.VisualStudio.WJProject.Default.props │ ├── Microsoft.VisualStudio.WJProject.props │ ├── Microsoft.VisualStudio.WJProject.targets │ ├── SCC.xaml │ ├── cs-CZ │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── cs │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── de-DE │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── de │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── en-US │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── en │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── es-ES │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── es │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── fr-FR │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── fr │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── it-IT │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── it │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── ja-JP │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── ja │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── ko-KR │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── ko │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── pl-PL │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── pl │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── pt-BR │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── ru-RU │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── ru │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── tr-TR │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── tr │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── zh-CN │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── zh-Hans │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ ├── zh-Hant │ │ └── Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll │ └── zh-TW │ │ ├── AppxManifest.xaml │ │ ├── AssemblyReference.xaml │ │ ├── Content.xaml │ │ ├── DebuggerDevice.xaml │ │ ├── DebuggerGeneral.xaml │ │ ├── DebuggerLocal.xaml │ │ ├── DebuggerRemote.xaml │ │ ├── DebuggerSimulator.xaml │ │ ├── DebuggerWindowsPhoneEmulator.xaml │ │ ├── ExpandedSDKNode.xaml │ │ ├── General.BrowseObject.xaml │ │ ├── General.neutral.xaml │ │ ├── General.uap.xaml │ │ ├── General.xaml │ │ ├── None.xaml │ │ ├── PRIResource.xaml │ │ ├── ProjectItemsSchema.xaml │ │ ├── ProjectReference.xaml │ │ ├── ResolvedAssemblyReference.xaml │ │ ├── ResolvedExpandedSDKReference.xaml │ │ ├── ResolvedProjectReference.xaml │ │ ├── ResolvedSDKReference.xaml │ │ ├── ResolvedSDKReferenceProps.xaml │ │ └── SDKReference.xaml │ ├── ReportingServices │ └── Microsoft.ReportingServices.targets │ ├── SSDT │ ├── Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets │ ├── Microsoft.Data.Tools.Schema.SqlTasks.targets │ ├── Microsoft.Data.Tools.Tasks.SchemaCompare.CommonTypes.xsd │ └── Microsoft.Data.Tools.Tasks.SchemaCompare.Sample.xsd │ ├── TeamTest │ ├── Microsoft.TeamTest.targets │ ├── Microsoft.VisualStudio.TestTools.BuildShadowsTask.dll │ └── Publicize.exe │ ├── TypeScript │ ├── Microsoft.TypeScript.DNX.targets │ ├── Microsoft.TypeScript.Default.props │ ├── Microsoft.TypeScript.jsproj.targets │ ├── Microsoft.TypeScript.targets │ ├── TypeScript.Tasks.dll │ ├── cs │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── de │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── en │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── es │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── fr │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── it │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── ja │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── ko │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── pl │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── pt-BR │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── ru │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── tr │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── zh-Hans │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ └── zh-Hant │ │ ├── ProjectItemsSchema.xaml │ │ ├── TypeScript.Tasks.resources.dll │ │ ├── TypeScriptCompile.xaml │ │ └── TypeScriptProjectProperties.xaml │ ├── VSSDK │ ├── Microsoft.VsSDK.Build.Tasks.dll │ ├── Microsoft.VsSDK.Common.props │ ├── Microsoft.VsSDK.Common.targets │ ├── Microsoft.VsSDK.Cpp.Overrides.targets │ ├── Microsoft.VsSDK.Cpp.targets │ ├── Microsoft.VsSDK.targets │ └── ProjectItemsSchema.xml │ ├── WCF │ └── Microsoft.VisualStudio.ServiceModel.targets │ ├── Web │ ├── CollectFiles │ │ ├── Microsoft.Web.Publishing.AllFilesInProjectFolder.targets │ │ ├── Microsoft.Web.Publishing.AllFilesInTheProject.targets │ │ └── Microsoft.Web.Publishing.OnlyFilesToRunTheApp.targets │ ├── Deploy │ │ ├── Microsoft.Web.Publishing.Deploy.FPSE.targets │ │ ├── Microsoft.Web.Publishing.Deploy.FTP.targets │ │ ├── Microsoft.Web.Publishing.Deploy.FileSystem.targets │ │ ├── Microsoft.Web.Publishing.Deploy.MsDeploy.targets │ │ ├── Microsoft.Web.Publishing.Deploy.Package.targets │ │ └── Microsoft.Web.Publishing.MsDeploy.Common.targets │ ├── Microsoft.DNX.Publishing.targets │ ├── Microsoft.Web.Publishing.Tasks.dll │ ├── Microsoft.Web.Publishing.targets │ ├── Microsoft.Web.Publishing │ │ └── ImportAfter │ │ │ └── Microsoft.Web.AzureAD.Publishing.targets │ ├── Microsoft.Web.XmlTransform.dll │ ├── Microsoft.WebSite.Publishing.targets │ ├── Powershell │ │ └── 1.0.1 │ │ │ ├── default-publish.ps1 │ │ │ ├── filesystem.pubxml │ │ │ ├── package.pubxml │ │ │ └── publish-module.psm1 │ └── Transform │ │ └── Microsoft.Web.Publishing.AspNetCompileMerge.targets │ ├── WebApplications │ ├── Microsoft.WebApplication.Build.Tasks.Dll │ └── Microsoft.WebApplication.targets │ └── Windows Azure Tools │ └── 2.8 │ ├── ImportAfter │ └── Microsoft.WindowsAzure.RemoteDebugger.targets │ ├── Microsoft.VisualStudio.WindowsAzure.Tasks.2.8.dll │ ├── Microsoft.VisualStudio.WindowsAzure.Tasks.Host.2.8.dll │ └── Microsoft.WindowsAzure.targets ├── Microsoft SDKs └── TypeScript │ └── 1.7 │ ├── License.htm │ ├── cs │ └── diagnosticMessages.generated.json │ ├── de │ └── diagnosticMessages.generated.json │ ├── en │ └── diagnosticMessages.generated.json │ ├── es │ └── diagnosticMessages.generated.json │ ├── fr │ └── diagnosticMessages.generated.json │ ├── it │ └── diagnosticMessages.generated.json │ ├── ja │ └── diagnosticMessages.generated.json │ ├── ko │ └── diagnosticMessages.generated.json │ ├── lib.d.ts │ ├── lib.es6.d.ts │ ├── pl │ └── diagnosticMessages.generated.json │ ├── pt-BR │ └── diagnosticMessages.generated.json │ ├── ru │ └── diagnosticMessages.generated.json │ ├── tr │ └── diagnosticMessages.generated.json │ ├── tsc.exe │ ├── tsc.js │ ├── tschost.dll │ ├── zh-CN │ └── diagnosticMessages.generated.json │ └── zh-TW │ └── diagnosticMessages.generated.json ├── ProjectFileTransform.ps1 └── Uninstall.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /VS2015/TokenAuthWebApiCore.Server/src 6 | /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/obj 7 | -------------------------------------------------------------------------------- /.vs/TokenAuthWebApiCore/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/.vs/TokenAuthWebApiCore/v15/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # token-based-authentification-using-asp.net-web-api-core -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/.vs/TokenAuthWebApiCore.Server/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2015/TokenAuthWebApiCore.Server/.vs/TokenAuthWebApiCore.Server/v14/.suo -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/.vs/restore.dg: -------------------------------------------------------------------------------- 1 | #:C:\TEAMPROJECT\GIT\TokenAuthWebApiCore\VS2015\TokenAuthWebApiCore.Server\src\TokenAuthWebApiCore.Server\TokenAuthWebApiCore.Server.xproj 2 | -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-preview2-003131" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Filters/ValidateFormAttribute.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.Filters; 3 | 4 | namespace TokenAuthWebApiCore.Server.Filters 5 | { 6 | public class ValidateFormAttribute : ActionFilterAttribute 7 | { 8 | public override void OnActionExecuting(ActionExecutingContext context) 9 | { 10 | base.OnActionExecuting(context); 11 | 12 | if (!context.ModelState.IsValid) 13 | { 14 | context.Result = new BadRequestObjectResult(context.ModelState); 15 | } 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class LoginViewModel 6 | { 7 | [Required] 8 | [EmailAddress] 9 | [Display(Name = "Email")] 10 | public string Email { get; set; } 11 | 12 | [Required] 13 | [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)] 14 | [DataType(DataType.Password)] 15 | [Display(Name = "Password")] 16 | public string Password { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Models/MyRole.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class MyRole : IdentityRole 6 | { 7 | public string Description { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Models/MyUser.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | using System; 3 | 4 | namespace TokenAuthWebApiCore.Server.Models 5 | { 6 | public class MyUser : IdentityUser 7 | { 8 | public DateTime JoinDate { get; set; } 9 | public DateTime JobTitle { get; set; } 10 | public string Contract { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Models/RegisterViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class RegisterViewModel 6 | { 7 | [Required] 8 | [EmailAddress] 9 | [Display(Name = "Email")] 10 | public string Email { get; set; } 11 | 12 | [Required] 13 | [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)] 14 | [DataType(DataType.Password)] 15 | [Display(Name = "Password")] 16 | public string Password { get; set; } 17 | 18 | [DataType(DataType.Password)] 19 | [Display(Name = "Confirm password")] 20 | [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")] 21 | public string ConfirmPassword { get; set; } 22 | } 23 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using System.IO; 4 | 5 | namespace TokenAuthWebApiCore.Server 6 | { 7 | public class Program 8 | { 9 | public static void Main(string[] args) 10 | { 11 | var host = new WebHostBuilder() 12 | .UseKestrel() 13 | .UseContentRoot(Directory.GetCurrentDirectory()) 14 | .UseIISIntegration() 15 | .UseStartup() 16 | .Build(); 17 | 18 | host.Run(); 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:62163/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "launchUrl": "api/values", 15 | "environmentVariables": { 16 | "ASPNETCORE_ENVIRONMENT": "Development" 17 | } 18 | }, 19 | "TokenAuthWebApiCore.Server": { 20 | "commandName": "Project", 21 | "launchBrowser": true, 22 | "launchUrl": "http://localhost:5000/api/values", 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | } 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/SecurityContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | using Microsoft.EntityFrameworkCore; 3 | using TokenAuthWebApiCore.Server.Models; 4 | 5 | namespace TokenAuthWebApiCore.Server 6 | { 7 | public class SecurityContext : IdentityDbContext 8 | { 9 | public SecurityContext(DbContextOptions options) 10 | : base(options) 11 | { 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- 1 | { 2 | "ProviderId": "Microsoft.ApplicationInsights.ConnectedService.ConnectedServiceProvider", 3 | "Version": "7.18.214.2", 4 | "GettingStartedDocument": { 5 | "Uri": "https://go.microsoft.com/fwlink/?LinkID=798432" 6 | } 7 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/TokenAuthWebApiCore.Server.xproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | IIS Express 5 | 6 | -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "SecurityConnection": "data source=.;initial catalog=VS2015Db_TokenAuthWebApiCore.Server;persist security info=True;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" 4 | }, 5 | "Logging": { 6 | "IncludeScopes": false, 7 | "LogLevel": { 8 | "Default": "Debug", 9 | "System": "Information", 10 | "Microsoft": "Information" 11 | } 12 | }, 13 | "JwtSecurityToken": { 14 | "Key": "YouCannotAlterTokenIfYouCannotHoldThisVeryLongKey", 15 | "Issuer": "http://logcorner.com", 16 | "Audience": "http://logcorner.com" 17 | } 18 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\TOCANE\\.nuget\\packages" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "framework": { 4 | "name": "Microsoft.NETCore.App", 5 | "version": "1.0.1" 6 | }, 7 | "configProperties": { 8 | "System.GC.Server": true 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\TOCANE\\.nuget\\packages" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.0/TokenAuthWebApiCore.Server.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "framework": { 4 | "name": "Microsoft.NETCore.App", 5 | "version": "1.0.1" 6 | }, 7 | "configProperties": { 8 | "System.GC.Server": true 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.0/.SDKVersion: -------------------------------------------------------------------------------- 1 | 635cf40e58ede8a53e8b9555e19a6e1ccd6f9fbe 2 | 1.0.0-preview2-003131 3 | 4 | win10-x64 -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/bin/src/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.0/dotnet-compile.assemblyinfo.cs: -------------------------------------------------------------------------------- 1 | // This file has been auto generated. 2 | [assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 3 | [assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 4 | [assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 5 | [assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v1.0")] -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.0/.SDKVersion: -------------------------------------------------------------------------------- 1 | 635cf40e58ede8a53e8b9555e19a6e1ccd6f9fbe 2 | 1.0.0-preview2-003131 3 | 4 | win10-x64 -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.0/dotnet-compile.assemblyinfo.cs: -------------------------------------------------------------------------------- 1 | // This file has been auto generated. 2 | [assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 3 | [assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 4 | [assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 5 | [assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v1.0")] -------------------------------------------------------------------------------- /VS2015/TokenAuthWebApiCore.Server/src/TokenAuthWebApiCore.Server/web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /VS2017/.vs/TokenAuthWebApiCore/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/.vs/TokenAuthWebApiCore/v15/.suo -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Data/base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Data/base.sql -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Data/getToken - Copy.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub": "1234567890", 3 | "Jti": "CE23D656-CFF8-49DD-8E0C-6796D24F042B", 4 | "email": "adminuser@yopmail.com", 5 | "role": "admin" 6 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Data/getToken.json: -------------------------------------------------------------------------------- 1 | { 2 | "Email":"simpleuser@yopmail.com", 3 | "Password" :"WebApiCore1#" 4 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Data/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "Email":"simpleuser@yopmail.com", 3 | "Password" :"WebApiCore1#", 4 | "ConfirmPassword":"WebApiCore1#" 5 | } 6 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Setup/JwToken.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TokenAuthWebApiCore.Server.IntegrationTest.Setup 4 | { 5 | public class JwToken 6 | { 7 | public string token { get; set; } 8 | public DateTime expiration { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Setup/TestFixture.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.AspNetCore.TestHost; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Net.Http; 7 | using System.Text; 8 | using TokenAuthWebApiCore.Server.IntegrationTest.Setup; 9 | using Xunit; 10 | using Xunit.Abstractions; 11 | using Xunit.Sdk; 12 | 13 | namespace TokenAuthWebApiCore.Server.IntegrationTest.Setup 14 | { 15 | public class TestFixture : IDisposable where TStartup : class 16 | { 17 | private readonly TestServer _testServer; 18 | 19 | public TestFixture() 20 | { 21 | var webHostBuilder = new WebHostBuilder().UseStartup(); 22 | _testServer = new TestServer(webHostBuilder); 23 | 24 | httpClient = _testServer.CreateClient(); 25 | httpClient.BaseAddress = new Uri("http://localhost:58834"); 26 | } 27 | 28 | public HttpClient httpClient { get; } 29 | 30 | public void Dispose() 31 | { 32 | httpClient.Dispose(); 33 | _testServer.Dispose(); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/Setup/TestStartup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Data.Sqlite; 3 | using Microsoft.EntityFrameworkCore; 4 | using Microsoft.Extensions.DependencyInjection; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Text; 8 | 9 | namespace TokenAuthWebApiCore.Server.IntegrationTest.Setup 10 | { 11 | public class TestStartup : Startup 12 | { 13 | public TestStartup(IHostingEnvironment env) : base(env) 14 | { 15 | } 16 | public override void SetUpDataBase(IServiceCollection services) 17 | { 18 | var connectionStringBuilder = new SqliteConnectionStringBuilder { DataSource = ":memory:" }; 19 | var connectionString = connectionStringBuilder.ToString(); 20 | var connection = new SqliteConnection(connectionString); 21 | 22 | services 23 | .AddEntityFrameworkSqlite() 24 | .AddDbContext( 25 | options => options.UseSqlite(connection) 26 | ); 27 | } 28 | 29 | public override void EnsureDatabaseCreated(SecurityContext dbContext) 30 | { 31 | dbContext.Database.OpenConnection(); 32 | dbContext.Database.EnsureCreated(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/ValuesController_UnauthorizedTest.cs: -------------------------------------------------------------------------------- 1 | using System.Net; 2 | using System.Net.Http; 3 | using System.Threading.Tasks; 4 | using TokenAuthWebApiCore.Server.IntegrationTest.Setup; 5 | using Xunit; 6 | namespace TokenAuthWebApiCore.Server.IntegrationTest 7 | { 8 | public class ValuesController_UnauthorizedTest : IClassFixture> 9 | { 10 | public ValuesController_UnauthorizedTest(TestFixture fixture) 11 | { 12 | Client = fixture.httpClient; 13 | } 14 | 15 | public HttpClient Client { get; } 16 | 17 | [Theory] 18 | [InlineData("POST")] 19 | [InlineData("GET")] 20 | [InlineData(new object[] { "PUT", 1 })] 21 | [InlineData(new object[] { "DELETE",1 })] 22 | public async Task WhenNoAuthenticatedUser_MakeRequestRequest_Return_UnAuthorized(string method, int? id =null) 23 | { 24 | // Arrange 25 | var request = new HttpRequestMessage(new HttpMethod(method), $"/api/values/{id}"); 26 | 27 | // Act 28 | var response = await Client.SendAsync(request); 29 | 30 | // Assert 31 | Assert.Equal(HttpStatusCode.Unauthorized, response.StatusCode); 32 | } 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "ConnectionStrings": { 4 | "SecurityConnection": "data source=TOCANE-LATITUDE;initial catalog=Db_TokenAuthWebApiCore.Server;persist security info=True;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" 5 | }, 6 | "Logging": { 7 | "IncludeScopes": false, 8 | "LogLevel": { 9 | "Default": "Debug", 10 | "System": "Information", 11 | "Microsoft": "Information" 12 | } 13 | }, 14 | "JwtSecurityToken": { 15 | "Key": "FooBarQuuxIsTheStandardTypeOfStringWeUse12345", 16 | "Issuer": "http://logcorner.com", 17 | "Audience": "http://logcorner.com" 18 | }, 19 | "xunit.methodDisplay": "method" 20 | } 21 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\TOCANE\\.nuget\\packages" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.IntegrationTest.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "framework": { 4 | "name": "Microsoft.NETCore.App", 5 | "version": "1.1.2" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "ConnectionStrings": { 4 | "SecurityConnection": "data source=TOCANE-LATITUDE;initial catalog=Db_TokenAuthWebApiCore.Server;persist security info=True;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" 5 | }, 6 | "Logging": { 7 | "IncludeScopes": false, 8 | "LogLevel": { 9 | "Default": "Debug", 10 | "System": "Information", 11 | "Microsoft": "Information" 12 | } 13 | }, 14 | "JwtSecurityToken": { 15 | "Key": "FooBarQuuxIsTheStandardTypeOfStringWeUse12345", 16 | "Issuer": "http://logcorner.com", 17 | "Audience": "http://logcorner.com" 18 | }, 19 | "xunit.methodDisplay": "method" 20 | } 21 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.reporters.netstandard15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.reporters.netstandard15.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.utility.netstandard15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.utility.netstandard15.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server.IntegrationTest/bin/Debug/netcoreapp1.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using Microsoft.AspNetCore.Mvc; 3 | using Microsoft.AspNetCore.Authorization; 4 | using System.Threading.Tasks; 5 | 6 | namespace TokenAuthWebApiCore.Server.Controllers 7 | { 8 | [Authorize] 9 | [Route("api/[controller]")] 10 | public class ValuesController : Controller 11 | { 12 | // GET api/values 13 | [HttpGet] 14 | public async Task< IEnumerable> Get() 15 | { 16 | return new string[] { "value1", "value2" }; 17 | } 18 | 19 | // GET api/values/5 20 | [HttpGet("{id}")] 21 | public string Get(int id) 22 | { 23 | return "value"; 24 | } 25 | 26 | // POST api/values 27 | [HttpPost] 28 | public void Post([FromBody]string value) 29 | { 30 | } 31 | 32 | // PUT api/values/5 33 | [HttpPut("{id}")] 34 | public void Put(int id, [FromBody]string value) 35 | { 36 | } 37 | 38 | // DELETE api/values/5 39 | [HttpDelete("{id}")] 40 | public void Delete(int id) 41 | { 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Filters/ValidateFormAttribute.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.Filters; 3 | 4 | namespace TokenAuthWebApiCore.Server.Filters 5 | { 6 | public class ValidateFormAttribute : ActionFilterAttribute 7 | { 8 | public override void OnActionExecuting(ActionExecutingContext context) 9 | { 10 | base.OnActionExecuting(context); 11 | 12 | if (!context.ModelState.IsValid) 13 | { 14 | context.Result = new BadRequestObjectResult(context.ModelState); 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class LoginViewModel 6 | { 7 | [Required] 8 | [EmailAddress] 9 | [Display(Name = "Email")] 10 | public string Email { get; set; } 11 | 12 | [Required] 13 | [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)] 14 | [DataType(DataType.Password)] 15 | [Display(Name = "Password")] 16 | public string Password { get; set; } 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Models/MyRole.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class MyRole : IdentityRole 6 | { 7 | public string Description { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Models/MyUser.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | using System; 3 | 4 | namespace TokenAuthWebApiCore.Server.Models 5 | { 6 | public class MyUser : IdentityUser 7 | { 8 | public DateTime JoinDate { get; set; } 9 | public DateTime JobTitle { get; set; } 10 | public string Contract { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Models/RegisterViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | 3 | namespace TokenAuthWebApiCore.Server.Models 4 | { 5 | public class RegisterViewModel 6 | { 7 | [Required] 8 | [EmailAddress] 9 | [Display(Name = "Email")] 10 | public string Email { get; set; } 11 | 12 | [Required] 13 | [StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)] 14 | [DataType(DataType.Password)] 15 | [Display(Name = "Password")] 16 | public string Password { get; set; } 17 | 18 | [DataType(DataType.Password)] 19 | [Display(Name = "Confirm password")] 20 | [Compare("Password", ErrorMessage = "The password and confirmation password do not match.")] 21 | public string ConfirmPassword { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Program.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using Microsoft.AspNetCore.Builder; 3 | using Microsoft.AspNetCore.Hosting; 4 | 5 | namespace TokenAuthWebApiCore.Server 6 | { 7 | public class Program 8 | { 9 | public static void Main(string[] args) 10 | { 11 | var host = new WebHostBuilder() 12 | .UseKestrel() 13 | .UseContentRoot(Directory.GetCurrentDirectory()) 14 | .UseIISIntegration() 15 | .UseStartup() 16 | .UseApplicationInsights() 17 | .Build(); 18 | 19 | host.Run(); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:58834/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "launchUrl": "api/values", 15 | "environmentVariables": { 16 | "ASPNETCORE_ENVIRONMENT": "Development" 17 | } 18 | }, 19 | "TokenAuthWebApiCore.Server": { 20 | "commandName": "Project", 21 | "launchBrowser": true, 22 | "launchUrl": "api/values", 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | }, 26 | "applicationUrl": "http://localhost:58835" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/SecurityContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Identity.EntityFrameworkCore; 2 | using Microsoft.EntityFrameworkCore; 3 | using TokenAuthWebApiCore.Server.Models; 4 | 5 | namespace TokenAuthWebApiCore.Server 6 | { 7 | public class SecurityContext : IdentityDbContext 8 | { 9 | public SecurityContext(DbContextOptions options) 10 | : base(options) 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/TokenAuthWebApiCore.Server.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 600 5 | 6 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "SecurityConnection": "data source=.;initial catalog=VS2017Db_TokenAuthWebApiCore.Server;persist security info=True;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" 4 | }, 5 | "Logging": { 6 | "IncludeScopes": false, 7 | "LogLevel": { 8 | "Default": "Debug", 9 | "System": "Information", 10 | "Microsoft": "Information" 11 | } 12 | }, 13 | "JwtSecurityToken": { 14 | "Key": "YouCannotAlterTokenIfYouCannotHoldThisVeryLongKey", 15 | "Issuer": "http://logcorner.com", 16 | "Audience": "http://logcorner.com" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\TOCANE\\.nuget\\packages" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "framework": { 4 | "name": "Microsoft.NETCore.App", 5 | "version": "1.1.2" 6 | }, 7 | "configProperties": { 8 | "System.GC.Server": true 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\TOCANE\\.nuget\\packages" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/bin/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "framework": { 4 | "name": "Microsoft.NETCore.App", 5 | "version": "1.1.2" 6 | }, 7 | "configProperties": { 8 | "System.GC.Server": true 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Angular2TokenAuthWebApiCore.Server.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Angular2TokenAuthWebApiCore.Server")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")] 17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 19 | [assembly: System.Reflection.AssemblyProductAttribute("Angular2TokenAuthWebApiCore.Server")] 20 | [assembly: System.Reflection.AssemblyTitleAttribute("Angular2TokenAuthWebApiCore.Server")] 21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 22 | 23 | // Generated by the MSBuild WriteCodeFragment class. 24 | 25 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/Angular2TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fd470c8703fe351bbbf4ea455f2af0bdd367072b 2 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("TokenAuthWebApiCore.Server")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyDescriptionAttribute("Package Description")] 17 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 18 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 19 | [assembly: System.Reflection.AssemblyProductAttribute("TokenAuthWebApiCore.Server")] 20 | [assembly: System.Reflection.AssemblyTitleAttribute("TokenAuthWebApiCore.Server")] 21 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 22 | 23 | // Generated by the MSBuild WriteCodeFragment class. 24 | 25 | -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.dll -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/TokenAuthWebApiCore.Server/obj/Debug/netcoreapp1.1/TokenAuthWebApiCore.Server.pdb -------------------------------------------------------------------------------- /VS2017/TokenAuthWebApiCore.Server/obj/TokenAuthWebApiCore.Server.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/Microsoft.Net.Compilers.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/Microsoft.Net.Compilers.1.3.2.nupkg -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.AppContext.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.exe -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.rsp: -------------------------------------------------------------------------------- 1 | /r:System 2 | /r:System.Core 3 | /r:Microsoft.CSharp 4 | /u:System 5 | /u:System.IO 6 | /u:System.Collections.Generic 7 | /u:System.Console 8 | /u:System.Diagnostics 9 | /u:System.Dynamic 10 | /u:System.Linq 11 | /u:System.Linq.Expressions 12 | /u:System.Text 13 | /u:System.Threading.Tasks -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/Microsoft.TypeScript.Compiler.2.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/Microsoft.TypeScript.Compiler.2.3.3.nupkg -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/chakracore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/chakracore.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/lib.es2016.d.ts: -------------------------------------------------------------------------------- 1 | /*! ***************************************************************************** 2 | Copyright (c) Microsoft Corporation. All rights reserved. 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | this file except in compliance with the License. You may obtain a copy of the 5 | License at http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 9 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 10 | MERCHANTABLITY OR NON-INFRINGEMENT. 11 | 12 | See the Apache Version 2.0 License for specific language governing permissions 13 | and limitations under the License. 14 | ***************************************************************************** */ 15 | 16 | 17 | 18 | /// 19 | 20 | 21 | /// 22 | /// -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/lib.es2017.d.ts: -------------------------------------------------------------------------------- 1 | /*! ***************************************************************************** 2 | Copyright (c) Microsoft Corporation. All rights reserved. 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | this file except in compliance with the License. You may obtain a copy of the 5 | License at http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 9 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 10 | MERCHANTABLITY OR NON-INFRINGEMENT. 11 | 12 | See the Apache Version 2.0 License for specific language governing permissions 13 | and limitations under the License. 14 | ***************************************************************************** */ 15 | 16 | 17 | 18 | /// 19 | 20 | 21 | /// 22 | /// 23 | /// 24 | /// -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/tsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.Compiler.2.3.3/tools/tsc.exe -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/Microsoft.TypeScript.MSBuild.2.3.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/Microsoft.TypeScript.MSBuild.2.3.3.nupkg -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/build/Microsoft.TypeScript.MSBuild.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 2.3 6 | true 7 | 8 | 9 | 10 | 11 | 12 | $(PublishPipelineCollectFilesCore); 13 | FindConfigFiles; 14 | CompileTypeScript; 15 | CompileTypeScriptWithTSConfig; 16 | 17 | 18 | -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/Microsoft.TypeScript.Default.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ES5 5 | true 6 | false 7 | false 8 | false 9 | true 10 | true 11 | 12 | 13 | -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/TypeScript.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/net45/TypeScript.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/netstandard1.3/TypeScript.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/netstandard1.3/TypeScript.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/chakracore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/chakracore.dll -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/lib.es2016.d.ts: -------------------------------------------------------------------------------- 1 | /*! ***************************************************************************** 2 | Copyright (c) Microsoft Corporation. All rights reserved. 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | this file except in compliance with the License. You may obtain a copy of the 5 | License at http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 9 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 10 | MERCHANTABLITY OR NON-INFRINGEMENT. 11 | 12 | See the Apache Version 2.0 License for specific language governing permissions 13 | and limitations under the License. 14 | ***************************************************************************** */ 15 | 16 | 17 | 18 | /// 19 | 20 | 21 | /// 22 | /// -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/lib.es2017.d.ts: -------------------------------------------------------------------------------- 1 | /*! ***************************************************************************** 2 | Copyright (c) Microsoft Corporation. All rights reserved. 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | this file except in compliance with the License. You may obtain a copy of the 5 | License at http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 9 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 10 | MERCHANTABLITY OR NON-INFRINGEMENT. 11 | 12 | See the Apache Version 2.0 License for specific language governing permissions 13 | and limitations under the License. 14 | ***************************************************************************** */ 15 | 16 | 17 | 18 | /// 19 | 20 | 21 | /// 22 | /// 23 | /// 24 | /// -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/lib.esnext.d.ts: -------------------------------------------------------------------------------- 1 | /*! ***************************************************************************** 2 | Copyright (c) Microsoft Corporation. All rights reserved. 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | this file except in compliance with the License. You may obtain a copy of the 5 | License at http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 8 | KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 9 | WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 10 | MERCHANTABLITY OR NON-INFRINGEMENT. 11 | 12 | See the Apache Version 2.0 License for specific language governing permissions 13 | and limitations under the License. 14 | ***************************************************************************** */ 15 | 16 | 17 | 18 | /// 19 | 20 | 21 | /// 22 | /// 23 | -------------------------------------------------------------------------------- /VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/tsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/Microsoft.TypeScript.MSBuild.2.3.3/tools/tsc/tsc.exe -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/Readme.txt: -------------------------------------------------------------------------------- 1 | ** USAGE NOTES ** 2 | 3 | You should install the TypeScript 1.7 for Visual Studio extension on your development system prior 4 | to installing this package. You should also let Visual Studio make initial updates to the project 5 | file by adding at least one .ts file to the project. 6 | When the installation finishes, you should be prompted to reload the project. 7 | 8 | 9 | ** UNINSTALLATION NOTES ** 10 | 11 | Uninstalling will undo the changes made to the project file. It is possible that a prompt will 12 | appear during uninstallation, telling you to to discard your changes to the project file when 13 | Visual Studio detects the file has been changed outside the environment. 14 | 15 | 16 | ** UPGRADE NOTES ** 17 | 18 | It is highly recommended to uninstall this package prior to upgrading your project to a new 19 | TypeScript release. This will revert changes made to the project file, which should allow 20 | Visual Studio to perform the upgrade cleanly. 21 | After the upgrade is performed, reinstall the appropriate version of this package that matches the 22 | new TypeScript version. 23 | 24 | 25 | ** LEGAL INFORMATION ** 26 | 27 | This package contains files from TypeScript for Microsoft Visual Studio, developed by 28 | Microsoft Corporation. License terms for the included software can be found in the License.htm 29 | file. -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/TypeScript.MSBuildTask.1.7.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/TypeScript.MSBuildTask.1.7.3.nupkg -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . "$toolsPath\ProjectFileTransform.ps1" 4 | 5 | if ($project -eq $null) { Exit } 6 | 7 | # Delete bogus content file that serves to start this script 8 | $project.ProjectItems | Where { $_.Name -eq "TypeScript.MSBuildTask.readme.txt" } | ForEach-Object { $_.Delete() } 9 | 10 | # Save any current changes to project and update imports 11 | $project.Save() 12 | $xml = [XML] (gc $project.FullName) 13 | if ($xml -eq $null) { exit } 14 | ModifyProjectFile $installPath $toolsPath $package $xml 15 | $xml.Save($project.FullName) -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/Microsoft.TypeScript.Default.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ES5 5 | true 6 | false 7 | none 8 | false 9 | 10 | 11 | false 12 | true 13 | 14 | 15 | true 16 | 17 | 18 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/TypeScript.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/TypeScript.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/cs/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/cs/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/cs/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/de/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/de/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/de/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/en/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/en/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/en/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/es/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/es/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/es/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/fr/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/fr/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/fr/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/it/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/it/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/it/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ja/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ja/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ja/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ko/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ko/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ko/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pl/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pl/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pl/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pt-BR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pt-BR/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/pt-BR/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ru/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ru/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/ru/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/tr/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/tr/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/tr/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hans/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hans/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hans/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hant/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hant/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v12.0/TypeScript/zh-Hant/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.ps1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/cs-CZ/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/de-DE/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/en-US/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/es-ES/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/fr-FR/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/it-IT/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ja-JP/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ko-KR/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/pl-PL/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/pt-BR/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/ru-RU/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/tr-TR/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/zh-CN/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Add-AppDevPackage.resources/zh-TW/Add-AppDevPackage.psd1 -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Microsoft.Build.AppxPackage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Microsoft.Build.AppxPackage.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Microsoft.VisualStudio.ArchitectureTools.PEReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/Microsoft.VisualStudio.ArchitectureTools.PEReader.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/PDBCopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AppxPackage/PDBCopy.exe -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AspNet/Microsoft.Web.AspNet.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/AspNet/Microsoft.Web.AspNet.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/BuildInfo/Microsoft.VisualStudio.ReleaseManagement.BuildInfoTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/BuildInfo/Microsoft.VisualStudio.ReleaseManagement.BuildInfoTasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeAnalysis/fxcoptask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeAnalysis/fxcoptask.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeSharing/Microsoft.CodeSharing.Common.Default.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 8.1 5 | true 6 | 7 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeSharing/Microsoft.CodeSharing.Common.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeSharing/Microsoft.CodeSharing.Common.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeSharing/Microsoft.SharedProject.CSharp.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | false 5 | false 6 | 7 | 8 | 9 | 10 | 11 | 12 | {DDDDC6BE-451D-46DD-A712-A5D07027E072} 13 | CSharp 14 | 15 | 16 | 17 | 18 | Project 19 | 20 | 21 | 22 | BrowseObject 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/CodeSharing/Microsoft.SharedProject.Common.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/Microsoft.DNX.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/Microsoft.DNX.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/en-US/debugger_general.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/en-US/folder.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/en-US/none.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/DNX/en-US/scc.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.0/Rules/Folder.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.0/Rules/General.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.0/Rules/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.0/Rules/SCC.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.1/Rules/Folder.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.1/Rules/General.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.1/Rules/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Deployment/1.1/Rules/SCC.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/FSharp/Microsoft.FSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/FSharp/Microsoft.Portable.FSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/DeployableItemPath.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 30 | 31 | 32 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/Folder.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/Microsoft.VisualStudio.JavaScript.Project.BuildTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/Microsoft.VisualStudio.JavaScript.Project.BuildTask.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/Microsoft.VisualStudio.WJProject.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Windows 6 | 10.0 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/SCC.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs-CZ/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs-CZ/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs-CZ/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs-CZ/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/cs/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de-DE/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de-DE/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de-DE/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de-DE/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/de/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en-US/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en-US/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en-US/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en-US/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/en/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es-ES/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es-ES/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es-ES/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es-ES/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/es/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr-FR/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr-FR/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr-FR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr-FR/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/fr/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it-IT/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it-IT/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it-IT/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it-IT/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/it/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja-JP/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja-JP/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja-JP/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja-JP/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ja/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko-KR/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko-KR/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko-KR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko-KR/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ko/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl-PL/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl-PL/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl-PL/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl-PL/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pl/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/pt-BR/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru-RU/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru-RU/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru-RU/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru-RU/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/ru/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr-TR/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr-TR/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr-TR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr-TR/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/tr/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-CN/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-CN/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-CN/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-CN/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-Hans/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-Hans/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-Hant/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-Hant/Microsoft.VisualStudio.JavaScript.Project.BuildTask.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-TW/AssemblyReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-TW/DebuggerGeneral.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-TW/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/JavaScript/zh-TW/ProjectReference.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/SSDT/Microsoft.Data.Tools.Schema.Sql.UnitTesting.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | $(ReferencePath);$(SSDTPath) 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TeamTest/Microsoft.VisualStudio.TestTools.BuildShadowsTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TeamTest/Microsoft.VisualStudio.TestTools.BuildShadowsTask.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TeamTest/Publicize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TeamTest/Publicize.exe -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/Microsoft.TypeScript.Default.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ES5 5 | true 6 | false 7 | none 8 | false 9 | 10 | 11 | false 12 | true 13 | 14 | 15 | true 16 | 17 | 18 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/TypeScript.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/TypeScript.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/cs/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/cs/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/cs/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/de/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/de/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/de/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/en/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/en/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/en/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/es/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/es/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/es/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/fr/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/fr/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/fr/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/it/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/it/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/it/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ja/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ja/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ja/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ko/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ko/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ko/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pl/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pl/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pl/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pt-BR/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pt-BR/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/pt-BR/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ru/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ru/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/ru/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/tr/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/tr/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/tr/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hans/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hans/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hans/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hant/ProjectItemsSchema.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hant/TypeScript.Tasks.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/TypeScript/zh-Hant/TypeScript.Tasks.resources.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/VSSDK/Microsoft.VsSDK.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/VSSDK/Microsoft.VsSDK.Build.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/VSSDK/ProjectItemsSchema.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Microsoft.Web.Publishing.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Microsoft.Web.Publishing.Tasks.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Powershell/1.0.1/filesystem.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | FileSystem 9 | wwwroot 10 | $(OutDir)\$(Configuration)\PublishOutput 11 | False 12 | 13 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Web/Powershell/1.0.1/package.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | Package 9 | wwwroot 10 | $(OutDir)\$(Configuration)\MSDeployPackage\$(MSBuildProjectName).zip 11 | Default Web Site 12 | 13 | -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/WebApplications/Microsoft.WebApplication.Build.Tasks.Dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/WebApplications/Microsoft.WebApplication.Build.Tasks.Dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Windows Azure Tools/2.8/Microsoft.VisualStudio.WindowsAzure.Tasks.2.8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Windows Azure Tools/2.8/Microsoft.VisualStudio.WindowsAzure.Tasks.2.8.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Windows Azure Tools/2.8/Microsoft.VisualStudio.WindowsAzure.Tasks.Host.2.8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/MSBuild/Microsoft/VisualStudio/v14.0/Windows Azure Tools/2.8/Microsoft.VisualStudio.WindowsAzure.Tasks.Host.2.8.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Microsoft SDKs/TypeScript/1.7/tsc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Microsoft SDKs/TypeScript/1.7/tsc.exe -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Microsoft SDKs/TypeScript/1.7/tschost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logcorner/token-based-authentification-using-asp.net-web-api-core/2e078d51dba5302322fe7bc74514c35eff09a401/VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Microsoft SDKs/TypeScript/1.7/tschost.dll -------------------------------------------------------------------------------- /VS2017/packages/TypeScript.MSBuildTask.1.7.3/tools/Uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . "$toolsPath\ProjectFileTransform.ps1" 4 | 5 | if ($project -eq $null) { Exit } 6 | 7 | # Check if this is the last remaining NuGet package for the project 8 | $projectPath = Split-Path -Parent $project.FileName 9 | $packagesXml = [XML] (gc "$projectPath\packages.config") 10 | 11 | if ($packagesXml.packages.SelectNodes("package[@id!='$($package.Id)']").Count -eq 0) { 12 | MessageBox "In order to ensure clean package uninstallation, you should DISCARD changes to the project when prompted" "Uninstall" 0 64 13 | # Make the changes to the project file which are normally done automatically, because 14 | # those changes are to be discarded by the user. 15 | $project.ProjectItems | Where { $_.Name -eq "packages.config" } | ForEach-Object { $_.Remove() } 16 | } 17 | 18 | # Save any current changes to project and update imports 19 | $project.Save() 20 | $xml = [XML] (gc $project.FullName) 21 | RestoreProjectFile $installPath $toolsPath $package $xml 22 | $projName = $project.FullName 23 | $xml.Save($projName) 24 | --------------------------------------------------------------------------------