mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-27 13:47:10 +08:00
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<Import Project="$(SolutionDir)Version.props" />
|
|
<Import Project="$(SolutionDir)PackNuget.props" />
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="BootstrapBlazor.FontAwesome" Version="9.0.2" />
|
|
<PackageReference Include="BootstrapBlazor" Version="9.7.2" />
|
|
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Locales\*.json" />
|
|
<EmbeddedResource Include="Locales\*.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
|
<None Include="..\README.zh-CN.md" Pack="true" PackagePath="\" />
|
|
<None Remove="$(SolutionDir)..\README.md" Pack="false" PackagePath="\" />
|
|
<None Remove="$(SolutionDir)..\README.zh-CN.md" Pack="false" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ThingsGateway.Furion\ThingsGateway.Furion.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|
|
|