Skip to content

Commit b34d794

Browse files
committed
Add package lock generation for all runtime id
1 parent 5968dc4 commit b34d794

File tree

29 files changed

+77653
-6
lines changed

29 files changed

+77653
-6
lines changed

build/_build.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19+
<PackageDownload Include="dotnet-ef" Version="[9.0.0]" />
1920
<PackageDownload Include="minver-cli" Version="[5.0.0]" />
2021
</ItemGroup>
2122

src/Directory.Build.props

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5+
<RuntimeIdentifiers>
6+
win-x64;
7+
win-arm64;
8+
linux-x64;
9+
linux-arm64;
10+
osx-arm64
11+
</RuntimeIdentifiers>
512

613
<LangVersion>12.0</LangVersion>
714
<Deterministic>true</Deterministic>
@@ -11,7 +18,7 @@
1118

1219
<PropertyGroup>
1320
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
14-
<RestoreLockedMode>true</RestoreLockedMode>
21+
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</RestoreLockedMode>
1522

1623
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
1724
</PropertyGroup>

src/app/Edelstein.Application.Server/packages.lock.json

Lines changed: 4392 additions & 0 deletions
Large diffs are not rendered by default.

src/common/Edelstein.Common.Crypto/packages.lock.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,23 @@
22
"version": 2,
33
"dependencies": {
44
"net9.0": {
5+
"Microsoft.NET.ILLink.Tasks": {
6+
"type": "Direct",
7+
"requested": "[9.0.0, )",
8+
"resolved": "9.0.0",
9+
"contentHash": "zAwp213evC3UkimtVXRb+Dlgc/40QG145nmZDtp2LO9zJJMfrp+i/87BnXN7tRXEA4liyzdFkjqG1HE8/RPb4A=="
10+
},
511
"MinVer": {
612
"type": "Direct",
713
"requested": "[5.0.0, )",
814
"resolved": "5.0.0",
915
"contentHash": "ybkgpQMtt0Fo91l5rYtE3TZtD+Nmy5Ko091xvfXXOosQdMi30XO2EZ2+ShZt89gdu7RMmJqZaJ+e1q6d+6+KNw=="
1016
}
11-
}
17+
},
18+
"net9.0/linux-arm64": {},
19+
"net9.0/linux-x64": {},
20+
"net9.0/osx-arm64": {},
21+
"net9.0/win-arm64": {},
22+
"net9.0/win-x64": {}
1223
}
1324
}

0 commit comments

Comments
 (0)