-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathMachine.Specifications.Runner.VisualStudio.csproj
More file actions
47 lines (39 loc) · 2.15 KB
/
Machine.Specifications.Runner.VisualStudio.csproj
File metadata and controls
47 lines (39 loc) · 2.15 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.1.0</Version>
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
<PackageId>Machine.Specifications.Runner.VisualStudio</PackageId>
<AssemblyName>Machine.Specifications.Runner.VisualStudio.TestAdapter</AssemblyName>
<NoWarn>NU5127,NU5128</NoWarn>
<IncludeBuildOutput>false</IncludeBuildOutput>
<Description>Machine.Specifications test adapter for .NET Framework and .NET Core.</Description>
<Authors>Machine Specifications</Authors>
<PackageTags>mspec;unit;testing;context;specification;bdd;tdd</PackageTags>
<PackageReleaseNotes>https://github.com/machine/machine.specifications.runner.visualstudio/releases</PackageReleaseNotes>
<PackageIcon>Machine.png</PackageIcon>
<PackageProjectUrl>https://github.com/machine/machine.specifications.runner.visualstudio</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Machine.Specifications" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="17.12.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Machine.png" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);NetCorePackageItems;NetFrameworkPackageItems</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
<Target Name="NetCorePackageItems" Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<ItemGroup>
<TfmSpecificPackageFile Include="*.props" PackagePath="build\$(TargetFramework)" />
<TfmSpecificPackageFile Include="$(OutputPath)\Machine.*.dll" PackagePath="build\$(TargetFramework)" />
</ItemGroup>
</Target>
<Target Name="NetFrameworkPackageItems" Condition="'$(TargetFramework)' == 'net472'">
<ItemGroup>
<TfmSpecificPackageFile Include="*.props" PackagePath="build\$(TargetFramework)" />
<TfmSpecificPackageFile Include="$(OutputPath)\Machine.*.dll" PackagePath="build\$(TargetFramework)" />
</ItemGroup>
</Target>
</Project>