Skip to content

Commit

Permalink
Use NerdBank.GitVersioning for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
FarmGeek4Life committed Jan 11, 2024
1 parent 60bbde0 commit f9e6146
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
7 changes: 4 additions & 3 deletions MzidToTsvConverter/MzidToTsvConverter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
<RootNamespace>MzidToTsvConverter</RootNamespace>
<AssemblyName>MzidToTsvConverter</AssemblyName>
<PackageId>MzidToTsvConverter</PackageId>
<Version>1.4.8</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Description>Converts mzid[.gz] files to the MS-GF+ tsv format (tab-separated values). Designed for MS-GF+ mzid files (looks for EValue and SpecEValue scores)</Description>
<Company>Pacific Northwest National Laboratory</Company>
<Product>Mzid To Tsv Converter</Product>
Expand All @@ -30,6 +27,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PRISM-Library" Version="2.8.16" />
<PackageReference Include="PSI_Interface" Version="2.6.2" />
</ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions MzidToTsvConverter/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.5",
"assemblyVersion": {
"precision": "revision"
},
"publicReleaseRefSpec": [
"^refs/heads/master$" // we release out of master; added to remove commit ID from the NuGet package version
],
"exclude": [
"**/bin",
"**/obj"
]
}

0 comments on commit f9e6146

Please sign in to comment.