Skip to content

Commit 9780f81

Browse files
authored
(#106) Fix for signing template packages. (#112)
* (#106) Updated signed package list for template * (#106) Updated template csproj
1 parent d8828bc commit 9780f81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
./tools/sign code azure-key-vault
113113
**/*.nupkg
114114
--base-directory "${{ github.workspace }}/packages"
115-
--file-list "${{ github.workspace }}/SignedPackageFileList.txt"
115+
--file-list "${{ github.workspace }}/SignedTemplateFileList.txt"
116116
--timestamp-url "http://timestamp.digicert.com"
117117
--publisher-name ".NET Foundation"
118118
--description "Community Datasync Toolkit"

templates/Template.DatasyncServer/Template.DatasyncServer.csproj.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<TargetFramework>net8.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<ImplicitUsings>enable</ImplicitUsings>
6-
<LangVersion>10.0</LangVersion>
6+
<LangVersion>latest</LangVersion>
77
<UserSecretsId>{SECRETS-GUID}</UserSecretsId>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="CommunityToolkit.Datasync.Server" Version="{NUGET_VERSION}" />
1212
<PackageReference Include="CommunityToolkit.Datasync.Server.EntityFrameworkCore" Version="{NUGET_VERSION}" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.0">
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>

0 commit comments

Comments
 (0)