forked from dotnet/reproducible-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83c3898
commit a58c63c
Showing
4 changed files
with
55 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,3 +285,4 @@ __pycache__/ | |
*.btm.cs | ||
*.odx.cs | ||
*.xsd.cs | ||
*.binlog |
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
27 changes: 27 additions & 0 deletions
27
src/DotNet.ReproducibleBuilds/DotNet.ReproducibleBuilds.nuspec
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>DotNet.ReproducibleBuilds</id> | ||
<version>$version$</version> | ||
<authors>.NET Foundation and Contributors</authors> | ||
<developmentDependency>true</developmentDependency> | ||
<licenseUrl>https://github.com/dotnet/reproducible-builds/blob/main/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/dotnet/reproducible-builds</projectUrl> | ||
<description>Enables reproducible build settings</description> | ||
<releaseNotes>https://github.com/dotnet/reproducible-builds/blob/main/README.md</releaseNotes> | ||
<copyright>© .NET Foundation</copyright> | ||
<repository type="git" url="https://github.com/dotnet/reproducible-builds" commit="$RepositoryCommit$" /> | ||
<dependencies> | ||
<dependency id="Microsoft.SourceLink.AzureDevOpsServer.Git" version="1.0.0" /> | ||
<dependency id="Microsoft.SourceLink.AzureRepos.Git" version="1.0.0" /> | ||
<dependency id="Microsoft.SourceLink.Bitbucket.Git" version="1.0.0" /> | ||
<dependency id="Microsoft.SourceLink.GitLab" version="1.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="DotNet.ReproducibleBuilds.props" target="build\DotNet.ReproducibleBuilds.props" /> | ||
<file src="DotNet.ReproducibleBuilds.props" target="buildMultiTargeting\DotNet.ReproducibleBuilds.props" /> | ||
<file src="DotNet.ReproducibleBuilds.targets" target="build\DotNet.ReproducibleBuilds.targets" /> | ||
<file src="DotNet.ReproducibleBuilds.targets" target="buildMultiTargeting\DotNet.ReproducibleBuilds.targets" /> | ||
</files> | ||
</package> |