Skip to content

Commit 1e5045f

Browse files
committed
dotnet migrate - load balancing
1 parent fd0602a commit 1e5045f

File tree

14 files changed

+58
-14773
lines changed

14 files changed

+58
-14773
lines changed

load_balancing/global.json

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

load_balancing/load_balancing.sln

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
1-
1+
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.26114.2
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9A1264CB-70DA-41E2-859E-CD97B356BF5C}"
77
EndProject
8-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{34E9C19A-4EA8-46DD-B647-C909A9A8EF78}"
9-
ProjectSection(SolutionItems) = preProject
10-
global.json = global.json
11-
EndProjectSection
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchoolService", "src\SchoolService\SchoolService.csproj", "{DC46CFA5-7425-4E8F-81A9-C36681EF6131}"
129
EndProject
13-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SchoolService", "src\SchoolService\SchoolService.xproj", "{DC46CFA5-7425-4E8F-81A9-C36681EF6131}"
14-
EndProject
15-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SchoolClient", "src\SchoolClient\SchoolClient.xproj", "{5395AFDC-43A1-4E7E-ACEF-5FB32EDA40EC}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SchoolClient", "src\SchoolClient\SchoolClient.csproj", "{5395AFDC-43A1-4E7E-ACEF-5FB32EDA40EC}"
1611
EndProject
1712
Global
1813
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<AssemblyName>SchoolClient</AssemblyName>
6+
<OutputType>Exe</OutputType>
7+
<PackageId>SchoolClient</PackageId>
8+
<RuntimeFrameworkVersion>1.1.0</RuntimeFrameworkVersion>
9+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
10+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
11+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<Content Include="appsettings.json">
16+
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
17+
</Content>
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.0" />
22+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.0" />
23+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="1.1.0" />
24+
<PackageReference Include="System.ComponentModel.Annotations" Version="4.3.0" />
25+
<PackageReference Include="RabbitMQ.Client" Version="5.0.0-pre2" />
26+
</ItemGroup>
27+
</Project>

load_balancing/src/SchoolClient/SchoolClient.xproj

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

load_balancing/src/SchoolClient/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"rabbitmq-settings": {
3-
"hostName": "10.211.55.2",
3+
"hostName": "127.0.0.1",
44
"userName": "admin",
55
"password": "admin",
66
"sendQueue": "api.school"

load_balancing/src/SchoolClient/project.json

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

0 commit comments

Comments
 (0)