2
0
mirror of synced 2025-01-12 09:34:40 +00:00

24 lines
532 B
XML
Raw Normal View History

2023-09-13 09:12:18 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-09-13 10:03:11 +02:00
<ItemGroup>
<None Remove="dashboard.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="dashboard.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
2023-09-20 10:59:52 +02:00
<ProjectReference Include="..\..\Framework\Core\Core.csproj" />
2023-09-13 10:03:11 +02:00
</ItemGroup>
2023-09-13 09:12:18 +02:00
</Project>