-
-
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.
Revert "Replace NuGet.Versioning project with NuGet package. Closes #10…
- Loading branch information
Showing
38 changed files
with
6,159 additions
and
4 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
NuGet.Versioning/** |
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
using System.Diagnostics.CodeAnalysis; | ||
|
||
[assembly: ExcludeFromCodeCoverage( | ||
Justification = "Everything in this project is copied from NuGet.Versioning package." | ||
)] |
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,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Exclude the project from SonarCloud analysis. --> | ||
<SonarQubeExclude>true</SonarQubeExclude> | ||
</PropertyGroup> | ||
|
||
<!-- NuGet package configuration (requires DotNet.ReproducibleBuilds package) --> | ||
<PropertyGroup> | ||
<EnablePackageValidation>true</EnablePackageValidation> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<!-- <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> --><!-- enable when creating package locally --> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DotNet.ReproducibleBuilds"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
</Project> |
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,21 @@ | ||
# Why this project? | ||
|
||
Everything in this project is copied from `NuGet.Versioning` package. | ||
It is not possible to add the `NuGet.Versioning` package as a package reference, because it's already used by DevToys. | ||
Read here more: https://github.com/DevToys-app/DevToys/discussions/1333#discussioncomment-11053480 | ||
|
||
## NuGet.Shared | ||
|
||
Copied version: https://github.com/chocolatey/NuGet.Client/tree/fd581a266557b3891e16faf4652f28a37ba29685/build/Shared | ||
|
||
Latest version: https://github.com/chocolatey/NuGet.Client/tree/develop/build/Shared | ||
|
||
## NuGet.Versioning | ||
|
||
Copied version: https://github.com/chocolatey/NuGet.Client/tree/fd581a266557b3891e16faf4652f28a37ba29685/src/NuGet.Core/NuGet.Versioning | ||
|
||
Latest version: https://github.com/chocolatey/NuGet.Client/tree/develop/src/NuGet.Core/NuGet.Versioning | ||
|
||
## Copyright & License | ||
|
||
See https://github.com/NuGet/NuGet.Client. |
Oops, something went wrong.