Skip to content

Commit

Permalink
Rename project name
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaodongTian committed Aug 30, 2022
1 parent be1306c commit 7e864a5
Show file tree
Hide file tree
Showing 18 changed files with 490 additions and 195 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32714.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WCFCorePerfService", "WCFCorePerfService\WCFCorePerfService.csproj", "{35B05C6A-9FF0-4A9C-9BBE-E88963416022}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoreWCFPerfService", "CoreWCFPerfService\CoreWCFPerfService.csproj", "{35B05C6A-9FF0-4A9C-9BBE-E88963416022}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WCFCorePerfClient", "WCFCorePerfClient\WCFCorePerfClient.csproj", "{D9001454-F77C-4053-B4AE-34342351FD49}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

<ItemGroup>
<PackageReference Include="Microsoft.Crank.EventSources" Version="0.2.0-alpha.22228.2" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.9.0" />
<PackageReference Include="System.ServiceModel.Http" Version="4.9.0" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.9.0" />
<PackageReference Include="System.ServiceModel.Security" Version="4.9.0" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Http" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Security" Version="4.10.*" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
source:
repository: https://github.com/dotnet/wcf.git
branchOrCommit: main
project: src/System.Private.ServiceModel/tests/Benchmarks/Perf/WCFCorePerfClient/WCFCorePerfClient.csproj
project: src/System.Private.ServiceModel/tests/Benchmarks/PerfUsingCoreWCFService/WCFCorePerfClient/WCFCorePerfClient.csproj
isConsoleApp: true
waitForExit: true
variables:
Expand All @@ -13,7 +13,7 @@ jobs:
source:
repository: https://github.com/dotnet/wcf.git
branchOrCommit: main
project: src/System.Private.ServiceModel/tests/Benchmarks/Perf/WCFCorePerfService/WCFCorePerfService.csproj
project: src/System.Private.ServiceModel/tests/Benchmarks/PerfUsingCoreWCFService/CoreWCFPerfService/CoreWCFPerfService.csproj
isConsoleApp: true


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30323.103
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WCFCorePerf", "WCFCorePerf\WCFCorePerf.csproj", "{57DAD894-E349-43FD-9A55-0924F9F5D31A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WCFCorePerfClient", "WCFCorePerfClient\WCFCorePerfClient.csproj", "{57DAD894-E349-43FD-9A55-0924F9F5D31A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WCFCorePerfService", "WCFCorePerfService\WCFCorePerfService.csproj", "{BEB8FF58-A77B-4F14-BB4F-A07C0BED0227}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetfxWCFPerfService", "NetfxWCFPerfService\NetfxWCFPerfService.csproj", "{BEB8FF58-A77B-4F14-BB4F-A07C0BED0227}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Crank.EventSources" Version="0.1.0-alpha.20501.1" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.7.*" />
<PackageReference Include="System.ServiceModel.Http" Version="4.7.*" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.7.*" />
<PackageReference Include="System.ServiceModel.Security" Version="4.7.*" />
<PackageReference Include="System.ServiceModel.Duplex" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Http" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.*" />
<PackageReference Include="System.ServiceModel.Security" Version="4.10.*" />
</ItemGroup>

</Project>
Loading

0 comments on commit 7e864a5

Please sign in to comment.