-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathMicrosoft.Build.RunVSTest.csproj
More file actions
31 lines (31 loc) · 1.21 KB
/
Microsoft.Build.RunVSTest.csproj
File metadata and controls
31 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<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>
</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>