-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade BankAccount And Adventure Sample Project (#6582)
* 🎨 Upgrade to .net8 and add Directory.Build.props, Directory.Packages.props for manage globally pakcages and framework version * 🎨 Upgrade BankAccount to .net8 and add Directory.Build.props, Directory.Packages.props for manage globally Packages and framework version * 🎨 Upgrade Orleans.Client, Orleans.Sdk, Orleans.Server to Version 8.0.0
- Loading branch information
1 parent
2890083
commit 05f9096
Showing
8 changed files
with
47 additions
and
43 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
13 changes: 4 additions & 9 deletions
13
orleans/BankAccount/AccountTransfer.Grains/AccountTransfer.Grains.csproj
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 |
---|---|---|
@@ -1,14 +1,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Orleans.Transactions" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Transactions"/> | ||
<PackageReference Include="Microsoft.Orleans.Sdk"/> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj" /> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj"/> | ||
</ItemGroup> | ||
</Project> | ||
</Project> |
11 changes: 3 additions & 8 deletions
11
orleans/BankAccount/AccountTransfer.Interfaces/AccountTransfer.Interfaces.csproj
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 |
---|---|---|
@@ -1,11 +1,6 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Orleans.Transactions" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Sdk" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Transactions"/> | ||
<PackageReference Include="Microsoft.Orleans.Sdk"/> | ||
</ItemGroup> | ||
</Project> | ||
</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
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 |
---|---|---|
@@ -1,19 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Client" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Transactions" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting"/> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console"/> | ||
<PackageReference Include="Microsoft.Orleans.Client"/> | ||
<PackageReference Include="Microsoft.Orleans.Transactions"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj" /> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj"/> | ||
</ItemGroup> | ||
</Project> | ||
</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 |
---|---|---|
@@ -1,20 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Server" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Orleans.Transactions" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting"/> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console"/> | ||
<PackageReference Include="Microsoft.Orleans.Server"/> | ||
<PackageReference Include="Microsoft.Orleans.Transactions"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AccountTransfer.Grains\AccountTransfer.Grains.csproj" /> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj" /> | ||
<ProjectReference Include="..\AccountTransfer.Grains\AccountTransfer.Grains.csproj"/> | ||
<ProjectReference Include="..\AccountTransfer.Interfaces\AccountTransfer.Interfaces.csproj"/> | ||
</ItemGroup> | ||
</Project> | ||
</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,7 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
</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,15 @@ | ||
<!-- For more info on central package management go to https://devblogs.microsoft.com/nuget/introducing-central-package-management/ --> | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Orleans.Client" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Orleans.Sdk" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Orleans.Server" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Orleans.Transactions" Version="8.0.0" /> | ||
</ItemGroup> | ||
</Project> |