Skip to content

Commit

Permalink
Remove version from csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
twsouthwick committed Oct 21, 2020
1 parent a55cd23 commit b9f3518
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions AutofacContrib.NSubstitute/AutofacContrib.NSubstitute.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,29 @@
<AssemblyName>AutofacContrib.NSubstitute</AssemblyName>
<RootNamespace>AutofacContrib.NSubstitute</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>4.9.4</Version>
<AssemblyVersion>4.9.4.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup>
<InformationalVersion>$(GitVersion_InformationalVersion)</InformationalVersion>
<FileVersion>$(GitVersion_MajorMinorPatch)</FileVersion>
<AssemblyVersion>$(GitVersion_AssemblySemVer)</AssemblyVersion>
<Version>$(GitVersion_NuGetVersionV2)</Version>
</PropertyGroup>

<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<PropertyGroup Condition="$(APPVEYOR)">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Autofac" Version="5.2.0" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
</ItemGroup>
Expand Down

0 comments on commit b9f3518

Please sign in to comment.