2019-12-04 16:46:08 +08:00
<Project Sdk= "Microsoft.NET.Sdk.Web" >
<PropertyGroup >
2019-12-05 16:23:33 +08:00
<TargetFramework > netstandard2.0</TargetFramework>
2019-12-04 16:46:08 +08:00
<OutputType > Library</OutputType>
<IsPackable > true</IsPackable>
<RazorLangVersion > 3.0</RazorLangVersion>
2019-12-05 16:23:33 +08:00
<BlazorLinkOnBuild > false</BlazorLinkOnBuild>
2019-12-04 16:46:08 +08:00
</PropertyGroup>
<ItemGroup >
<!-- .js/.css files will be referenced via <script>/<link> tags; other content files will just be included in the app's 'dist' directory without any tags referencing them -->
2019-12-05 16:23:33 +08:00
<EmbeddedResource Include= "assets\**\*.js" LogicalName= "blazor:js:%(RecursiveDir)%(Filename)%(Extension)" />
<EmbeddedResource Include= "assets\**\*.css" LogicalName= "blazor:css:%(RecursiveDir)%(Filename)%(Extension)" />
<EmbeddedResource Include= "assets\**" Exclude= "**\*.js;**\*.css" LogicalName= "blazor:file:%(RecursiveDir)%(Filename)%(Extension)" />
2019-12-04 16:46:08 +08:00
</ItemGroup>
<ItemGroup >
2019-12-05 16:23:33 +08:00
<PackageReference Include= "Microsoft.AspNetCore.Blazor" Version= "3.1.0-preview1.19508.20" />
<PackageReference Include= "Microsoft.AspNetCore.Blazor.Build" Version= "3.1.0-preview1.19508.20" PrivateAssets= "all" />
2019-12-04 16:46:08 +08:00
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\AntBlazor\AntBlazor.csproj" />
</ItemGroup>
</Project>