38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
<Version>0.1.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="RainCrab.Plugins.AspNet" Version="0.2.0">
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\FastBlog.Core\FastBlog.Core.csproj" Private="false">
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\src\FastBlog.Web\FastBlog.Web.csproj" Private="false">
|
|
<ExcludeAssets>runtime</ExcludeAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="directcontact.manifest.json" />
|
|
<Content Remove="Plugin2.runtimeconfig.template.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Views\Contacts\ContactPage.cshtml" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|