-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Output RunVSTest NuGet package (#538)
* Output NuGet package for RunVSTest * Disable sbom since it's not working
- Loading branch information
1 parent
ce40e3e
commit f2e810d
Showing
2 changed files
with
36 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageId>Microsoft.Build.RunVSTest</PackageId> | ||
<Description>Runs VS Test Console</Description> | ||
<NoDefaultExcludes>true</NoDefaultExcludes> | ||
<BuildOutputTargetFolder>build\</BuildOutputTargetFolder> | ||
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath> | ||
<DevelopmentDependency>true</DevelopmentDependency> | ||
<LangVersion>latest</LangVersion> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Build.Tasks.Core" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="build\Microsoft.Build.RunVSTest.props"> | ||
<PackagePath>build\</PackagePath> | ||
<Pack>true</Pack> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</None> | ||
<None Include="build\Microsoft.Build.RunVSTest.targets"> | ||
<PackagePath>build\</PackagePath> | ||
<Pack>true</Pack> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<FilesToSign Include="$(TargetPath)" Authenticode="Microsoft400" StrongName="StrongName" /> | ||
</ItemGroup> | ||
</Project> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageId>Microsoft.Build.RunVSTest</PackageId> | ||
<Description>Runs VS Test Console</Description> | ||
<NoDefaultExcludes>true</NoDefaultExcludes> | ||
<BuildOutputTargetFolder>build\</BuildOutputTargetFolder> | ||
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath> | ||
<DevelopmentDependency>true</DevelopmentDependency> | ||
<LangVersion>latest</LangVersion> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<ArtifactsPath>$(BaseArtifactsPath)$(MSBuildProjectName)\</ArtifactsPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Build.Tasks.Core" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="build\Microsoft.Build.RunVSTest.props"> | ||
<PackagePath>build\</PackagePath> | ||
<Pack>true</Pack> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</None> | ||
<None Include="build\Microsoft.Build.RunVSTest.targets"> | ||
<PackagePath>build\</PackagePath> | ||
<Pack>true</Pack> | ||
<CopyToOutputDirectory>Never</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<FilesToSign Include="$(TargetPath)" Authenticode="Microsoft400" StrongName="StrongName" /> | ||
</ItemGroup> | ||
</Project> |