mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 04:35:14 +08:00
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<LangVersion>9.0</LangVersion>
|
|
<RazorLangVersion>3.0</RazorLangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DefineConstants />
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Stylesheet1.css" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Stylesheet1.css" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!--<ProjectReference Include="..\CPF.Linux\CPF.Linux.csproj" />
|
|
<ProjectReference Include="..\CPF.Mac\CPF.Mac.csproj" />-->
|
|
<ProjectReference Include="..\CPF.Razor\CPF.Razor.csproj" />
|
|
<ProjectReference Include="..\CPF.Skia\CPF.Skia.csproj" />
|
|
<ProjectReference Include="..\CPF.Windows\CPF.Windows.csproj" />
|
|
<ProjectReference Include="..\CPF\CPF.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|