12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.0</TargetFramework>
- <ApplicationIcon />
- <OutputType>Library</OutputType>
- <StartupObject />
- <Configurations>Debug;Release;DbgEmb</Configurations>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE;EMBED_HTML</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DbgEmb|AnyCPU'">
- <DefineConstants>TRACE;EMBED_HTML</DefineConstants>
- </PropertyGroup>
- <ItemGroup Condition="$(DefineConstants.Contains(EMBED_HTML))">
- <None Remove="**\*.html" />
- <None Remove="**\*.htm" />
- <None Remove="**\*.css" />
- <None Remove="**\*.js" />
- <EmbeddedResource Include="**\*.html" />
- <EmbeddedResource Include="**\*.htm" />
- <EmbeddedResource Include="**\*.css" />
- <EmbeddedResource Include="**\*.js" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
- <PackageReference Include="Unity.Interception" Version="5.11.1" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AspNetCoreSsrTemplateEngine\AspNetCoreSsrTemplateEngine.csproj" />
- <ProjectReference Include="..\AspNetCoreVirtualHost\AspNetCoreVirtualHost.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Pages\Components\Common\" />
- </ItemGroup>
- </Project>
|