Skip to content

Commit 1416541

Browse files
committed
.csproj migrations .NET Core
1 parent 9efd042 commit 1416541

21 files changed

+183
-442
lines changed

AssemblyVersioning.ps1

Lines changed: 0 additions & 60 deletions
This file was deleted.

NetCoreStack.Proxy.sln

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9754E8AD-F544-4C44-939D-95164DC29671}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{E65756E9-13C3-4F24-8818-A6CD2E5E99D8}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C1562457-1BAD-4E9E-BFED-499501BBD717}"
1111
ProjectSection(SolutionItems) = preProject
12-
global.json = global.json
1312
NuGet.config = NuGet.config
1413
README.md = README.md
1514
EndProjectSection
1615
EndProject
17-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetCoreStack.Proxy", "src\NetCoreStack.Proxy\NetCoreStack.Proxy.xproj", "{80583F01-4793-4A33-9945-09397C1FCBA8}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreStack.Proxy", "src\NetCoreStack.Proxy\NetCoreStack.Proxy.csproj", "{80583F01-4793-4A33-9945-09397C1FCBA8}"
1817
EndProject
19-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetCoreStack.Proxy.Tests", "test\NetCoreStack.Proxy.Tests\NetCoreStack.Proxy.Tests.xproj", "{00CEA1AF-05CC-4D39-9118-267683DEDCD1}"
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreStack.Proxy.Tests", "test\NetCoreStack.Proxy.Tests\NetCoreStack.Proxy.Tests.csproj", "{00CEA1AF-05CC-4D39-9118-267683DEDCD1}"
2019
EndProject
21-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetCoreStack.Proxy.ServerApp", "test\NetCoreStack.Proxy.ServerApp\NetCoreStack.Proxy.ServerApp.xproj", "{89018E44-AA73-4EB2-8B3D-B96FBFEF96A4}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreStack.Proxy.ServerApp", "test\NetCoreStack.Proxy.ServerApp\NetCoreStack.Proxy.ServerApp.csproj", "{89018E44-AA73-4EB2-8B3D-B96FBFEF96A4}"
2221
EndProject
23-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetCoreStack.Proxy.Test.Contracts", "test\NetCoreStack.Proxy.Test.Contracts\NetCoreStack.Proxy.Test.Contracts.xproj", "{65CF1A10-0E97-479E-9D8A-2C7741BF608C}"
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreStack.Proxy.Test.Contracts", "test\NetCoreStack.Proxy.Test.Contracts\NetCoreStack.Proxy.Test.Contracts.csproj", "{65CF1A10-0E97-479E-9D8A-2C7741BF608C}"
2423
EndProject
25-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetCoreStack.Proxy.WebClient", "test\NetCoreStack.Proxy.WebClient\NetCoreStack.Proxy.WebClient.xproj", "{9E156265-88E0-4506-8584-0644DCD9D205}"
24+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCoreStack.Proxy.WebClient", "test\NetCoreStack.Proxy.WebClient\NetCoreStack.Proxy.WebClient.csproj", "{9E156265-88E0-4506-8584-0644DCD9D205}"
2625
EndProject
2726
Global
2827
GlobalSection(SolutionConfigurationPlatforms) = preSolution

global.json

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard1.6;net46</TargetFrameworks>
5+
<AssemblyName>NetCoreStack.Proxy</AssemblyName>
6+
<PackageId>NetCoreStack.Proxy</PackageId>
7+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
8+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
9+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="1.1.1" />
14+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="1.1.1" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="1.1.1" />
16+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
17+
<PackageReference Include="NetCoreStack.Common" Version="1.0.0-*" />
18+
<PackageReference Include="NetCoreStack.DispatchProxyAsync" Version="1.0.0-*" />
19+
</ItemGroup>
20+
21+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
22+
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
23+
</ItemGroup>
24+
25+
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
26+
<Reference Include="System" />
27+
<Reference Include="Microsoft.CSharp" />
28+
</ItemGroup>
29+
30+
</Project>

src/NetCoreStack.Proxy/NetCoreStack.Proxy.xproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/NetCoreStack.Proxy/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/NetCoreStack.Proxy/project.json

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<PreserveCompilationContext>true</PreserveCompilationContext>
6+
<AssemblyName>NetCoreStack.Proxy.ServerApp</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>NetCoreStack.Proxy.ServerApp</PackageId>
9+
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
10+
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
11+
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<ProjectReference Include="..\NetCoreStack.Proxy.Test.Contracts\NetCoreStack.Proxy.Test.Contracts.csproj" />
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
20+
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.1.1" />
21+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" />
22+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
23+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
24+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.1.1" />
25+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
26+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
28+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
29+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.1" />
30+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
31+
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.1" />
32+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
33+
<PackageReference Include="Swashbuckle" Version="6.0.0-beta902" />
34+
</ItemGroup>
35+
36+
<ItemGroup>
37+
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
38+
</ItemGroup>
39+
40+
</Project>

test/NetCoreStack.Proxy.ServerApp/NetCoreStack.Proxy.ServerApp.xproj

Lines changed: 0 additions & 19 deletions
This file was deleted.

test/NetCoreStack.Proxy.ServerApp/project.json

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)