Files
Daybreak/Examples/Plugins/SimplePlugin/SimplePlugin/SimplePlugin.csproj
T

24 lines
665 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\Daybreak.Shared\Daybreak.Shared.csproj" />
</ItemGroup>
<!-- Embed wwwroot files as embedded resources -->
<ItemGroup>
<EmbeddedResource Include="wwwroot\**\*.*" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
</Project>