-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNKS.WebDevConsole.Daemon.csproj
More file actions
50 lines (44 loc) · 2.18 KB
/
Copy pathNKS.WebDevConsole.Daemon.csproj
File metadata and controls
50 lines (44 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk.Web">
<ItemGroup>
<ProjectReference Include="..\NKS.WebDevConsole.Core\NKS.WebDevConsole.Core.csproj" />
<!-- Plugin.SDK is listed in PluginLoadContext.SharedAssemblies so the
plugin ALC defers to the default ALC for it. That only works if
SDK.dll is actually present in the daemon's bin dir — otherwise the
default ALC raises FileNotFoundException when a plugin calls any SDK
type (UiSchemaBuilder, etc.) from GetUiDefinition(). Reference it
here so MSBuild copies SDK.dll next to the daemon executable. -->
<ProjectReference Include="..\NKS.WebDevConsole.Plugin.SDK\NKS.WebDevConsole.Plugin.SDK.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.10.1" />
<PackageReference Include="Dapper" Version="2.1.72" />
<PackageReference Include="dbup-core" Version="6.1.1" />
<PackageReference Include="dbup-sqlite" Version="6.0.4" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.5" />
<PackageReference Include="Scriban" Version="7.1.0" />
<PackageReference Include="Sentry" Version="6.4.0" />
<PackageReference Include="SharpCompress" Version="0.38.0" />
<PackageReference Include="Tomlyn" Version="2.3.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>false</PublishSingleFile>
<!-- F92: single source of truth for daemon version. Keep in sync with
src/frontend/package.json on every bump so /api/status and
/api/system return the real shipped version instead of hardcoded "0.1.0". -->
<Version>0.2.0</Version>
<AssemblyVersion>0.2.0.0</AssemblyVersion>
<FileVersion>0.2.0.0</FileVersion>
<InformationalVersion>0.2.0</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Migrations\*.sql" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="NKS.WebDevConsole.Daemon.Tests" />
</ItemGroup>
</Project>