Skip to content

Commit fca17ab

Browse files
committed
Added AssemblyVersion attribute. Should stay fixed on 5.0.0.0 until 6.0
1 parent 8e81b07 commit fca17ab

File tree

6 files changed

+12
-20
lines changed

6 files changed

+12
-20
lines changed

src/SimpleInjector.Integration.AspNetCore.Mvc.Core/SimpleInjector.Integration.AspNetCore.Mvc.Core.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Integration library for ASP.NET Core MVC core features for Simple Injector. This includes controller integration.</Description>
54
<AssemblyTitle>Simple Injector ASP.NET Core MVC Core Integration</AssemblyTitle>
65
<NeutralLanguage>en-US</NeutralLanguage>
76
<VersionPrefix>5.0.0</VersionPrefix>
87
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
8+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
99
<Authors>Simple Injector Contributors</Authors>
1010
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1111
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -44,5 +44,4 @@
4444
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
4545
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
4646
</Target>
47-
48-
</Project>
47+
</Project>

src/SimpleInjector.Integration.AspNetCore.Mvc.ViewFeatures/SimpleInjector.Integration.AspNetCore.Mvc.ViewFeatures.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Integration library for ASP.NET Core MVC view features for Simple Injector. This includes view component integration.</Description>
54
<AssemblyTitle>Simple Injector ASP.NET Core MVC View Features Integration</AssemblyTitle>
65
<NeutralLanguage>en-US</NeutralLanguage>
76
<VersionPrefix>5.0.0</VersionPrefix>
87
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
8+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
99
<Authors>Simple Injector Contributors</Authors>
1010
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1111
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -46,5 +46,4 @@
4646
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
4747
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
4848
</Target>
49-
50-
</Project>
49+
</Project>

src/SimpleInjector.Integration.AspNetCore.Mvc/SimpleInjector.Integration.AspNetCore.Mvc.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Integration library for ASP.NET Core MVC for Simple Injector. This package adds tag helper and Razor Pages integration on top of the core functionality.</Description>
54
<AssemblyTitle>Simple Injector ASP.NET Core MVC Integration</AssemblyTitle>
65
<NeutralLanguage>en-US</NeutralLanguage>
76
<VersionPrefix>5.0.0</VersionPrefix>
87
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
8+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
99
<Authors>Simple Injector Contributors</Authors>
1010
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1111
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -47,5 +47,4 @@
4747
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
4848
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
4949
</Target>
50-
51-
</Project>
50+
</Project>

src/SimpleInjector.Integration.AspNetCore/SimpleInjector.Integration.AspNetCore.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>Integration library for ASP.NET Core for Simple Injector.</Description>
54
<AssemblyTitle>Simple Injector ASP.NET Core Integration</AssemblyTitle>
65
<NeutralLanguage>en-US</NeutralLanguage>
76
<VersionPrefix>5.0.0</VersionPrefix>
87
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
8+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
99
<Authors>Simple Injector Contributors</Authors>
1010
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1111
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -49,5 +49,4 @@
4949
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
5050
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
5151
</Target>
52-
53-
</Project>
52+
</Project>

src/SimpleInjector.Integration.GenericHost/SimpleInjector.Integration.GenericHost.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>
54
Integrates Simple Injector with applications built upon .NET Generic Host.
@@ -8,6 +7,7 @@
87
<NeutralLanguage>en-US</NeutralLanguage>
98
<VersionPrefix>5.0.0</VersionPrefix>
109
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
10+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
1111
<Authors>Simple Injector Contributors</Authors>
1212
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1313
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -45,6 +45,4 @@
4545
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
4646
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
4747
</Target>
48-
49-
</Project>
50-
48+
</Project>

src/SimpleInjector.Integration.ServiceCollection/SimpleInjector.Integration.ServiceCollection.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<Description>
54
Integrates Simple Injector with applications that require the use of IServiceCollection for registration of framework components.
@@ -8,6 +7,7 @@
87
<NeutralLanguage>en-US</NeutralLanguage>
98
<VersionPrefix>5.0.0</VersionPrefix>
109
<PackageReleaseNotes>https://github.com/simpleinjector/SimpleInjector.Integration.AspNetCore/releases/tag/5.0.0</PackageReleaseNotes>
10+
<AssemblyVersion>5.0.0.0</AssemblyVersion>
1111
<Authors>Simple Injector Contributors</Authors>
1212
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1313
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -46,6 +46,4 @@
4646
<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
4747
<Exec Command="dotnet pack --no-build --configuration $(Configuration)" />
4848
</Target>
49-
50-
</Project>
51-
49+
</Project>

0 commit comments

Comments
 (0)