-
Notifications
You must be signed in to change notification settings - Fork 652
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the msbuild targets/props, nuspec
- Loading branch information
Showing
12 changed files
with
299 additions
and
364 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,38 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>GitVersionTask</id> | ||
<version>1.0.0</version> | ||
<title>GitVersionTask</title> | ||
<authors>GitTools and Contributors</authors> | ||
<owners>GitTools and Contributors</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<developmentDependency>true</developmentDependency> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl> | ||
<description>Stamps an assembly with git information based on SemVer.</description> | ||
<releaseNotes>https://github.com/GitTools/GitVersion/releases</releaseNotes> | ||
<copyright>Copyright GitTools 2019.</copyright> | ||
<tags>Git Versioning GitVersion GitFlowVersion GitFlow GitHubFlow SemVer</tags> | ||
<dependencies> | ||
<group> | ||
<dependency id="NuGetUtils.MSBuild.Exec" version="$nugetutilsversion$" exclude="Build,Analyzers" /> | ||
</group> | ||
<group targetFramework=".NETStandard2.0"> | ||
<dependency id="NuGetUtils.MSBuild.Exec" version="$nugetutilsversion$" exclude="Build,Analyzers" /> | ||
<dependency id="LibGit2Sharp" version="$libgit2sharpversion$" exclude="Build,Analyzers" /> | ||
<dependency id="YamlDotNet" version="$yamldotnetversion$" exclude="Build,Analyzers" /> | ||
</group> | ||
<group targetFramework=".NETFramework4.6.1"> | ||
<dependency id="NuGetUtils.MSBuild.Exec" version="$nugetutilsversion$" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\NugetAssets\build\**" target="build" /> | ||
<file src="..\NugetAssets\build\GitVersionTask.targets" target="buildMultiTargeting" /> | ||
<file src="..\bin\$configuration$\**" target="build" /> | ||
<file src="..\NuGetUtils.MSBuild.Exec.Version.props" target="build" /> | ||
</files> | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>GitVersionTask</id> | ||
<version>1.0.0</version> | ||
<title>GitVersionTask</title> | ||
<authors>GitTools and Contributors</authors> | ||
<owners>GitTools and Contributors</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<developmentDependency>true</developmentDependency> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/GitTools/GitVersion</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/GitTools/GitVersion/master/docs/img/package_icon.png</iconUrl> | ||
<description>Stamps an assembly with git information based on SemVer.</description> | ||
<releaseNotes>https://github.com/GitTools/GitVersion/releases</releaseNotes> | ||
<copyright>Copyright GitTools 2019.</copyright> | ||
<tags>Git Versioning GitVersion GitFlowVersion GitFlow GitHubFlow SemVer</tags> | ||
</metadata> | ||
<files> | ||
<!-- | ||
List platforms explicitly. If a new platform is supported by libgit2 update RuntimeIdMap method to handle it. | ||
--> | ||
<file src="netcoreapp2.1\publish\runtimes\**\*.so" target="tools\netstandard2.0\runtimes" /> | ||
<file src="netcoreapp2.1\publish\runtimes\**\*.dylib" target="tools\netstandard2.0\runtimes" /> | ||
<file src="netcoreapp2.1\publish\runtimes\win-x86\native\*.dll" target="tools\netstandard2.0\runtimes\win-x86\native" /> | ||
<file src="netcoreapp2.1\publish\runtimes\win-x64\native\*.dll" target="tools\netstandard2.0\runtimes\win-x64\native" /> | ||
|
||
<file src="netcoreapp2.1\publish\LibGit2Sharp.dll" target="tools\netstandard2.0" /> | ||
<file src="netcoreapp2.1\publish\Newtonsoft.Json.dll" target="tools\netstandard2.0" /> | ||
<file src="netcoreapp2.1\publish\YamlDotNet.dll" target="tools\netstandard2.0" /> | ||
<file src="netcoreapp2.1\publish\GitVersion*" target="tools\netstandard2.0" /> | ||
|
||
<file src="net461\GitVersion*" target="tools\net461" /> | ||
<file src="net461\LibGit2Sharp.*" target="tools\net461" /> | ||
<file src="net461\YamlDotNet.*" target="tools\net461" /> | ||
|
||
<file src="net461\lib\linux-x64\*.so" target="tools\net461\lib\linux-x64" /> | ||
<file src="net461\lib\osx\*.dylib" target="tools\net461\lib\osx" /> | ||
<file src="net461\lib\win32\**\*.dll" target="tools\net461\lib\win32" /> | ||
|
||
<file src="..\..\build\*.*" target="build" /> | ||
<file src="..\..\buildMultiTargeting\*.*" target="buildMultiTargeting" /> | ||
|
||
</files> | ||
</package> |
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/GitVersionTask/NugetAssets/build/GitVersionTask.targets
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
121 changes: 0 additions & 121 deletions
121
src/GitVersionTask/NugetAssets/build/functionality/GitVersionBuild.targets
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.