|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <_TargetDotNet>netcoreapp1.1</_TargetDotNet> |
| 4 | + <_TargetDotNetCore>netcoreapp1.1</_TargetDotNetCore> |
5 | 5 | <_TargetDotNetFramework>net46</_TargetDotNetFramework> |
6 | 6 |
|
7 | 7 | <TargetFrameworks>netcoreapp1.1;net46</TargetFrameworks> |
|
26 | 26 | <DefineConstants>NETSTANDARD</DefineConstants> |
27 | 27 | </PropertyGroup> |
28 | 28 |
|
29 | | - <ItemGroup Condition="'$(TargetFramework)'==$(_TargetDotNet)"> |
| 29 | + <ItemGroup Condition="'$(TargetFramework)'==$(_TargetDotNetCore)"> |
30 | 30 | <PackageReference Include="Mono.Cecil" Version="[0.10-*, 0.11)" /> |
31 | 31 | <PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="[15.0.0,16)"> |
32 | 32 | <PrivateAssets>All</PrivateAssets> <!-- Only a reference during build/dev time --> |
|
66 | 66 | <!-- .NET Core --> |
67 | 67 | <Content Include="Machine.Specifications.Runner.VisualStudio.props"> |
68 | 68 | <Pack>true</Pack> |
69 | | - <PackagePath>build\$(_TargetDotNet)\</PackagePath> |
| 69 | + <PackagePath>build\$(_TargetDotNetCore)\</PackagePath> |
70 | 70 | </Content> |
71 | | - <Content Include="bin\$(Configuration)\$(_TargetDotNet)\*.dll"> |
| 71 | + <Content Include="bin\$(Configuration)\$(_TargetDotNetCore)\*.dll"> |
72 | 72 | <Pack>true</Pack> |
73 | | - <PackagePath>build\$(_TargetDotNet)\</PackagePath> |
| 73 | + <PackagePath>build\$(_TargetDotNetCore)\</PackagePath> |
74 | 74 | </Content> |
75 | 75 |
|
76 | 76 | <!-- .NET Framework - support for the new .csproj and dotnet test tooling --> |
77 | 77 | <Content Include="Machine.Specifications.Runner.VisualStudio.props"> |
78 | 78 | <Pack>true</Pack> |
79 | 79 | <PackagePath>build\$(_TargetDotNetFramework)\</PackagePath> |
80 | 80 | </Content> |
| 81 | + <Content Include="bin\$(Configuration)\$(_TargetDotNetFramework)\Machine.Specifications.dll"> |
| 82 | + <Pack>true</Pack> |
| 83 | + <PackagePath>build\$(_TargetDotNetFramework)\</PackagePath> |
| 84 | + </Content> |
81 | 85 | <Content Include="bin\$(Configuration)\$(_TargetDotNetFramework)\Mono.*.dll"> |
82 | 86 | <Pack>true</Pack> |
83 | 87 | <PackagePath>build\$(_TargetDotNetFramework)\</PackagePath> |
|
0 commit comments