Skip to content

Commit 7d344da

Browse files
committed
mvc net9.0
1 parent fd1ff51 commit 7d344da

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

samples/Mvc/Danom.Samples.Mvc.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
65
<ImplicitUsings>enable</ImplicitUsings>
76
<Nullable>enable</Nullable>
87
</PropertyGroup>
98

109
<ItemGroup>
11-
<ProjectReference Include="..\..\src\Danom\Danom.csproj" />
1210
<ProjectReference Include="..\..\src\Danom.Validation\Danom.Validation.csproj" />
1311
</ItemGroup>
1412
</Project>

src/Danom.Mvc/Danom.Mvc.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<AssemblyName>Danom.Mvc</AssemblyName>
5-
<Version>1.0.0-beta1</Version>
5+
<Version>1.0.0</Version>
66

77
<!-- General info -->
88
<Description>ASP.NET Core MVC helpers for Danom.</Description>
@@ -11,7 +11,7 @@
1111
<NeutralLanguage>en-CA</NeutralLanguage>
1212

1313
<!-- Build config -->
14-
<TargetFramework>net8.0</TargetFramework>
14+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
1515
<ImplicitUsings>enable</ImplicitUsings>
1616
<Nullable>enable</Nullable>
1717
<DebugType>embedded</DebugType>
@@ -44,8 +44,8 @@
4444
</ItemGroup>
4545

4646
<ItemGroup>
47-
<PackageReference Include="Danom" Version="1.0.0-beta1" />
48-
<PackageReference Include="Danom.Validation" Version="1.0.0-beta1" />
47+
<PackageReference Include="Danom" Version="1.*" />
48+
<PackageReference Include="Danom.Validation" Version="1.*" />
4949
</ItemGroup>
5050

5151
</Project>

test/Danom.Mvc.Tests/Danom.Mvc.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<IsPackable>false</IsPackable>

test/TestHelpers/TestHelpers.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)