Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c626b45

Browse files
authored
Update SDK, copy logger (#4755)
1 parent b99e5fa commit c626b45

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

global.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100-rtm.23506.1",
3+
"version": "8.0.100",
44
"rollForward": "minor",
55
"allowPrerelease": false,
66
"architecture": "x64"
@@ -13,23 +13,23 @@
1313
"5.0.0",
1414
"6.0.0",
1515
"7.0.0",
16-
"8.0.0-alpha.1.23058.2"
16+
"8.0.0"
1717
],
1818
"dotnet/x86": [
1919
"2.1.0",
2020
"3.1.0",
2121
"5.0.0",
2222
"6.0.0",
2323
"7.0.0",
24-
"8.0.0-alpha.1.23058.2"
24+
"8.0.0"
2525
]
2626
},
2727
"vs": {
2828
"version": "17.8.0"
2929
},
3030
"xcopy-msbuild": "17.8.1-2",
3131
"vswhere": "2.2.7",
32-
"dotnet": "8.0.100-rtm.23506.1"
32+
"dotnet": "8.0.100"
3333
},
3434
"msbuild-sdks": {
3535
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23553.1"

playground/TestPlatform.Playground/TestPlatform.Playground.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<ProjectReference Include="$(RepoRoot)src\vstest.console\vstest.console.csproj" />
3131
<ProjectReference Include="$(RepoRoot)playground\MSTest1\MSTest1.csproj" />
3232
<ProjectReference Include="$(RepoRoot)src\AttachVS\AttachVS.csproj" />
33+
<ProjectReference Include="..\..\src\Microsoft.TestPlatform.Extensions.HtmlLogger\Microsoft.TestPlatform.Extensions.HtmlLogger.csproj" />
3334
</ItemGroup>
3435
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) AND '$(OS)' != 'Windows_NT' ">
3536
<Reference Include="System" />
@@ -49,7 +50,7 @@
4950
<FileToCopy Include="$(SourcePath)bin\vstest.console\$(Configuration)\$(NetFrameworkMinimum)\win7-x64\**\*.*" SubFolder="" />
5051
<FileToCopy Include="$(SourcePath)bin\Microsoft.TestPlatform.TestHostProvider\$(Configuration)\$(NetFrameworkMinimum)\**\*.*" SubFolder="Extensions\" />
5152

52-
<!-- copy net462, net47, net471, net472 and net48 testhosts" -->
53+
<!-- copy net462, net47, net471, net472 and net48 testhosts -->
5354
<FileToCopy Include="$(SourcePath)bin\testhost.x86\$(Configuration)\$(NetFrameworkMinimum)\win7-x86\**\*.*" SubFolder="TestHostNetFramework\" />
5455
<FileToCopy Include="$(SourcePath)bin\testhost\$(Configuration)\$(NetFrameworkMinimum)\win7-x64\**\*.*" SubFolder="TestHostNetFramework\" />
5556
<FileToCopy Include="$(SourcePath)bin\testhost.x86\$(Configuration)\net47\win7-x86\**\*.*" SubFolder="TestHostNetFramework\" />
@@ -61,13 +62,16 @@
6162
<FileToCopy Include="$(SourcePath)bin\testhost.x86\$(Configuration)\net48\win7-x86\**\*.*" SubFolder="TestHostNetFramework\" />
6263
<FileToCopy Include="$(SourcePath)bin\testhost\$(Configuration)\net48\win7-x64\**\*.*" SubFolder="TestHostNetFramework\" />
6364

64-
<!-- copy datacollectors" -->
65+
<!-- copy datacollectors -->
6566
<FileToCopy Include="$(SourcePath)bin\datacollector\$(Configuration)\net472\win7-x64\**\*.*" SubFolder="" />
6667
<FileToCopy Include="$(SourcePath)bin\Microsoft.TestPlatform.Extensions.BlameDataCollector\$(Configuration)\net472\**\*.*" SubFolder="Extensions\" />
6768
<FileToCopy Include="$(SourcePath)bin\DataCollectors\Microsoft.TestPlatform.Extensions.EventLogCollector\$(Configuration)\$(NetFrameworkMinimum)\**\*.*" SubFolder="Extensions\" />
6869
<FileToCopy Include="$(SourcePath)bin\DataCollectors\DumpMinitool\$(Configuration)\$(NetFrameworkMinimum)\win7-x64\**\*.*" SubFolder="Extensions\blame\" />
6970
<FileToCopy Include="$(SourcePath)bin\DataCollectors\DumpMinitool.x86\$(Configuration)\$(NetFrameworkMinimum)\win7-x86\**\*.*" SubFolder="Extensions\blame\" />
7071
<FileToCopy Include="$(SourcePath)bin\DataCollectors\DumpMinitool.arm64\$(Configuration)\$(NetFrameworkMinimum)\win10-arm64\**\*.*" SubFolder="Extensions\blame\" />
72+
73+
<!-- copy loggers -->
74+
<FileToCopy Include="$(SourcePath)bin\Microsoft.TestPlatform.Extensions.HtmlLogger\$(Configuration)\$(NetFrameworkMinimum)\Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger*" SubFolder="Extensions\" />
7175
</ItemGroup>
7276

7377
<Copy SourceFiles="@(FileToCopy)" DestinationFiles="@(FileToCopy -> '$(DestinationPath)\%(SubFolder)\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="True" OverwriteReadOnlyFiles="True" Retries="3" RetryDelayMilliseconds="500" UseHardlinksIfPossible="False" UseSymboliclinksIfPossible="False" ErrorIfLinkFails="False" Condition="@(FileToCopy-&gt;Count()) &gt; 0">

0 commit comments

Comments
 (0)