mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-27 13:47:10 +08:00
33 lines
785 B
XML
33 lines
785 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
<Import Project="$(SolutionDir)Version.props" />
|
|
<Import Project="$(SolutionDir)PackNuget.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Locales\*.json" />
|
|
<EmbeddedResource Include="Locales\*.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="TouchSocket.Dmtp" Version="3.0.26" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Admin\ThingsGateway.Admin.Razor\ThingsGateway.Admin.Razor.csproj" />
|
|
<ProjectReference Include="..\..\Foundation\ThingsGateway.Foundation.Razor\ThingsGateway.Foundation.Razor.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|
|
|
|
|
|
|