Skip to content

Commit fc4c91c

Browse files
committed
ProjectName Refactor
1 parent 27aec03 commit fc4c91c

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

ConsoleTest/ConsoleTest.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
<None Include="App.config" />
7272
</ItemGroup>
7373
<ItemGroup>
74-
<ProjectReference Include="..\CustomNetworkLib\CustomNetworkLib.csproj">
74+
<ProjectReference Include="..\CustomNetworkLib\NetworkLibrary.csproj">
7575
<Project>{BE87BAB5-0B84-4AE9-BB79-D9CECC4F11BE}</Project>
76-
<Name>CustomNetworkLib</Name>
76+
<Name>NetworkLibrary</Name>
7777
</ProjectReference>
7878
</ItemGroup>
7979
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.32014.148
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomNetworkLib", "CustomNetworkLib\CustomNetworkLib.csproj", "{BE87BAB5-0B84-4AE9-BB79-D9CECC4F11BE}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetworkLibrary", "CustomNetworkLib\NetworkLibrary.csproj", "{BE87BAB5-0B84-4AE9-BB79-D9CECC4F11BE}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "UnitTests\UnitTests.csproj", "{D9A61287-1648-4412-B56D-4B3C972F225A}"
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleTest", "ConsoleTest\ConsoleTest.csproj", "{F8C710AB-FEBA-4F74-9E76-2DBDB15DEA67}"
1111
EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Benchmarks", "Benchmarks", "{88B95995-6047-4481-A29E-861550B92E5C}"
1313
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TcpByteMessageBenchmarkNet6", "TcpByteMessageBenchmarkNet6\TcpByteMessageBenchmarkNet6.csproj", "{1878A03A-5A07-47BC-81EF-1E9A066AE1DE}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TcpMessageBenchmarkNet6", "TcpByteMessageBenchmarkNet6\TcpMessageBenchmarkNet6.csproj", "{1878A03A-5A07-47BC-81EF-1E9A066AE1DE}"
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UdpBenchmarkNet6", "UdpBenchmarkNet6\UdpBenchmarkNet6.csproj", "{947ECFF9-8F91-400B-B310-308B7089ADF4}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UdpBenchmarkNet6", "UdpBenchmarkNet6\UdpBenchmarkNet6.csproj", "{947ECFF9-8F91-400B-B310-308B7089ADF4}"
1717
EndProject
1818
Global
1919
GlobalSection(SolutionConfigurationPlatforms) = preSolution

TcpByteMessageBenchmarkNet6/TcpByteMessageBenchmarkNet6.csproj renamed to TcpByteMessageBenchmarkNet6/TcpMessageBenchmarkNet6.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<Reference Include="CustomNetworkLib">
12-
<HintPath>..\CustomNetworkLib\bin\Release\netstandard2.0\CustomNetworkLib.dll</HintPath>
11+
<Reference Include="NetworkLibrary">
12+
<HintPath>..\CustomNetworkLib\bin\Release\netstandard2.0\NetworkLibrary.dll</HintPath>
1313
</Reference>
1414
</ItemGroup>
1515

UdpBenchmarkNet6/UdpBenchmarkNet6.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
@@ -8,8 +8,8 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<Reference Include="CustomNetworkLib">
12-
<HintPath>..\CustomNetworkLib\bin\Release\netstandard2.0\CustomNetworkLib.dll</HintPath>
11+
<Reference Include="NetworkLibrary">
12+
<HintPath>..\CustomNetworkLib\bin\Release\netstandard2.0\NetworkLibrary.dll</HintPath>
1313
</Reference>
1414
</ItemGroup>
1515

UnitTests/UnitTests.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,15 @@
3939
<WarningLevel>4</WarningLevel>
4040
</PropertyGroup>
4141
<ItemGroup>
42-
<Reference Include="CustomNetworkLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
43-
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\CustomNetworkLib\bin\Debug\netstandard2.0\CustomNetworkLib.dll</HintPath>
45-
</Reference>
4642
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
4743
<HintPath>..\packages\MSTest.TestFramework.2.2.7\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
4844
</Reference>
4945
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5046
<HintPath>..\packages\MSTest.TestFramework.2.2.7\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
5147
</Reference>
48+
<Reference Include="NetworkLibrary">
49+
<HintPath>..\CustomNetworkLib\bin\Release\netstandard2.0\NetworkLibrary.dll</HintPath>
50+
</Reference>
5251
<Reference Include="System" />
5352
<Reference Include="System.Core" />
5453
</ItemGroup>

0 commit comments

Comments
 (0)