File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
templates/Template.DatasyncServer Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 52
52
- name : Generate csproj
53
53
working-directory : templates/Template.DatasyncServer
54
54
run : |
55
- (Get-Content -path "Template.DatasyncServer.csproj.template") -replace "${NUGET_VERSION}", $BUILD_VERSION | Set-Content -Path "./Template.DatasyncServer.csproj"
55
+ Write-Host "BUILD_VERSION (env)=$($env:BUILD_VERSION)"
56
+ (Get-Content -path "Template.DatasyncServer.csproj.template") -replace "{NUGET_VERSION}", $env:BUILD_VERSION | Set-Content -Path "./Template.DatasyncServer.csproj"
56
57
shell : pwsh
57
58
58
59
- name : Build template
Original file line number Diff line number Diff line change 1
1
<Project Sdk="Microsoft.NET.Sdk.Web">
2
2
<PropertyGroup>
3
- <TargetFramework>net8 .0</TargetFramework>
3
+ <TargetFramework>net9 .0</TargetFramework>
4
4
<Nullable>enable</Nullable>
5
5
<ImplicitUsings>enable</ImplicitUsings>
6
6
<LangVersion>latest</LangVersion>
10
10
<ItemGroup>
11
11
<PackageReference Include="CommunityToolkit.Datasync.Server" Version="{NUGET_VERSION}" />
12
12
<PackageReference Include="CommunityToolkit.Datasync.Server.EntityFrameworkCore" Version="{NUGET_VERSION}" />
13
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8 .0.8 " />
14
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8 .0.8 ">
13
+ <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9 .0.1 " />
14
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9 .0.1 ">
15
15
<PrivateAssets>all</PrivateAssets>
16
16
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17
17
</PackageReference>
You can’t perform that action at this time.
0 commit comments