AspNetCoreDefaultHost.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <ApplicationIcon />
  5. <OutputType>Library</OutputType>
  6. <StartupObject />
  7. <Configurations>Debug;Release;DbgEmb</Configurations>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <DefineConstants>TRACE;EMBED_HTML</DefineConstants>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DbgEmb|AnyCPU'">
  13. <DefineConstants>TRACE;EMBED_HTML</DefineConstants>
  14. </PropertyGroup>
  15. <ItemGroup Condition="$(DefineConstants.Contains(EMBED_HTML))">
  16. <None Remove="**\*.html" />
  17. <None Remove="**\*.htm" />
  18. <None Remove="**\*.css" />
  19. <None Remove="**\*.js" />
  20. <EmbeddedResource Include="**\*.html" />
  21. <EmbeddedResource Include="**\*.htm" />
  22. <EmbeddedResource Include="**\*.css" />
  23. <EmbeddedResource Include="**\*.js" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
  27. <PackageReference Include="Unity.Interception" Version="5.11.1" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\AspNetCoreSsrTemplateEngine\AspNetCoreSsrTemplateEngine.csproj" />
  31. <ProjectReference Include="..\AspNetCoreVirtualHost\AspNetCoreVirtualHost.csproj" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Folder Include="Pages\Components\Common\" />
  35. </ItemGroup>
  36. </Project>