mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-03 00:53:59 +08:00
32 lines
1.1 KiB
XML
32 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>
|
|
<ProjectReference Include="..\ThingsGateway.Gateway.Application\ThingsGateway.Gateway.Application.csproj" />
|
|
<PackageReference Include="BootstrapBlazor.UniverSheet" Version="9.0.5" />
|
|
<PackageReference Include="BootstrapBlazor.WinBox" Version="9.0.7" />
|
|
<PackageReference Include="BootstrapBlazor.CodeEditor" Version="9.0.1" />
|
|
<ProjectReference Include="..\..\Admin\ThingsGateway.Admin.Razor\ThingsGateway.Admin.Razor.csproj" />
|
|
<ProjectReference Include="..\..\Foundation\ThingsGateway.Foundation.Razor\ThingsGateway.Foundation.Razor.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Locales\*.json" />
|
|
<EmbeddedResource Include="Locales\*.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|
|
|
|
|