|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>netstandard1.3;net45</TargetFrameworks> |
| 3 | + <TargetFrameworks>netcoreapp1.0;net45</TargetFrameworks> |
4 | 4 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
5 | 5 |
|
6 | | - <id>Nerdbank.GitVersioning</id> |
| 6 | + <PackageId>Nerdbank.GitVersioning</PackageId> |
7 | 7 | <title>Nerdbank.GitVersioning</title> |
8 | 8 | <authors>Andrew Arnott</authors> |
9 | 9 | <owners>andarno</owners> |
10 | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
11 | 11 | <PackageProjectUrl>http://github.com/aarnott/Nerdbank.GitVersioning</PackageProjectUrl> |
12 | 12 | <description>Stamps your assemblies with semver 2.0 compliant git commit specific version information and provides NuGet versioning information as well.</description> |
13 | | - <summary>Stamps your assemblies with semver 2.0 compliant git commit specific version information and provides NuGet versioning information as well.</summary> |
14 | 13 | <PackageTags>git commit versioning version assemblyinfo</PackageTags> |
15 | 14 |
|
16 | 15 | <NoPackageAnalysis>true</NoPackageAnalysis> |
|
32 | 31 |
|
33 | 32 | <Target Name="CollectRuntimeOutputs" BeforeTargets="_GetPackageFiles"> |
34 | 33 | <ItemGroup> |
35 | | - <Content Include="$(OutputPath)net45\*.dll;$(OutputPath)net45\*.dll.config"> |
| 34 | + <Content Include="$(OutputPath)net45\*.dll;$(OutputPath)net45\*.dll.config" |
| 35 | + Exclude="$(OutputPath)net45\Microsoft.Build.*.dll"> |
36 | 36 | <Pack>true</Pack> |
37 | 37 | <PackagePath>build\MSBuildFull\</PackagePath> |
38 | 38 | </Content> |
39 | | - <Content Include="$(OutputPath)netstandard1.3\*.dll;$(OutputPath)*.json"> |
| 39 | + <Content Include="$(OutputPath)netcoreapp1.0\LibGit2Sharp.dll*" |
| 40 | + Include="$(OutputPath)netcoreapp1.0\MSBuildExtensionTask.dll" |
| 41 | + Include="$(OutputPath)netcoreapp1.0\Nerdbank.GitVersioning.*dll" |
| 42 | + Include="$(OutputPath)netcoreapp1.0\Newtonsoft.Json.dll" |
| 43 | + Include="$(OutputPath)netcoreapp1.0\Validation.dll" |
| 44 | + > |
40 | 45 | <Pack>true</Pack> |
41 | 46 | <PackagePath>build\MSBuildCore\</PackagePath> |
42 | 47 | </Content> |
|
0 commit comments