mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-05 10:03:58 +08:00
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<Import Project="$(SolutionDir)Version.props" />
|
|
<Import Project="$(SolutionDir)PackNuget.props" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ThingsGateway.Admin.Application\ThingsGateway.Admin.Application.csproj" />
|
|
<PackageReference Include="BootstrapBlazor.Chart" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.16" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'">
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.5" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<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>
|
|
</Project>
|
|
|
|
|
|
|