Skip to content

Commit f2e810d

Browse files
Output RunVSTest NuGet package (#538)
* Output NuGet package for RunVSTest * Disable sbom since it's not working
1 parent ce40e3e commit f2e810d

2 files changed

Lines changed: 36 additions & 31 deletions

File tree

azure-pipelines-official.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ pr:
3232
extends:
3333
template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate
3434
parameters:
35+
sdl:
36+
sbom:
37+
enabled: false
3538
pool:
3639
name: VSEngSS-MicroBuild2022-1ES
3740
demands:
Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,34 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
4-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
5-
<PackageId>Microsoft.Build.RunVSTest</PackageId>
6-
<Description>Runs VS Test Console</Description>
7-
<NoDefaultExcludes>true</NoDefaultExcludes>
8-
<BuildOutputTargetFolder>build\</BuildOutputTargetFolder>
9-
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
10-
<DevelopmentDependency>true</DevelopmentDependency>
11-
<LangVersion>latest</LangVersion>
12-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13-
</PropertyGroup>
14-
<ItemGroup>
15-
<PackageReference Include="Microsoft.Build.Tasks.Core" PrivateAssets="All" />
16-
</ItemGroup>
17-
<ItemGroup>
18-
<None Include="build\Microsoft.Build.RunVSTest.props">
19-
<PackagePath>build\</PackagePath>
20-
<Pack>true</Pack>
21-
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
22-
</None>
23-
<None Include="build\Microsoft.Build.RunVSTest.targets">
24-
<PackagePath>build\</PackagePath>
25-
<Pack>true</Pack>
26-
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
27-
</None>
28-
</ItemGroup>
29-
<ItemGroup>
30-
<FilesToSign Include="$(TargetPath)" Authenticode="Microsoft400" StrongName="StrongName" />
31-
</ItemGroup>
32-
</Project>
2+
<PropertyGroup>
3+
<TargetFramework>netstandard2.0</TargetFramework>
4+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
5+
<PackageId>Microsoft.Build.RunVSTest</PackageId>
6+
<Description>Runs VS Test Console</Description>
7+
<NoDefaultExcludes>true</NoDefaultExcludes>
8+
<BuildOutputTargetFolder>build\</BuildOutputTargetFolder>
9+
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
10+
<DevelopmentDependency>true</DevelopmentDependency>
11+
<LangVersion>latest</LangVersion>
12+
<IncludeSymbols>true</IncludeSymbols>
13+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
14+
<ArtifactsPath>$(BaseArtifactsPath)$(MSBuildProjectName)\</ArtifactsPath>
15+
</PropertyGroup>
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.Build.Tasks.Core" PrivateAssets="All" />
18+
</ItemGroup>
19+
<ItemGroup>
20+
<None Include="build\Microsoft.Build.RunVSTest.props">
21+
<PackagePath>build\</PackagePath>
22+
<Pack>true</Pack>
23+
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
24+
</None>
25+
<None Include="build\Microsoft.Build.RunVSTest.targets">
26+
<PackagePath>build\</PackagePath>
27+
<Pack>true</Pack>
28+
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
29+
</None>
30+
</ItemGroup>
31+
<ItemGroup>
32+
<FilesToSign Include="$(TargetPath)" Authenticode="Microsoft400" StrongName="StrongName" />
33+
</ItemGroup>
34+
</Project>

0 commit comments

Comments
 (0)