mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-28 22:23:59 +08:00
55 lines
2.3 KiB
XML
55 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\Version.props" />
|
|
<Import Project="..\..\PackNuget.props" />
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;</TargetFrameworks>
|
|
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
|
|
<PackageReference Include="Riok.Mapperly" Version="4.2.1" ExcludeAssets="runtime" PrivateAssets="all" />
|
|
<PackageReference Include="Rougamo.Fody" Version="5.0.1" />
|
|
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
|
|
<PackageReference Include="TouchSocket.Dmtp" Version="4.0.0-beta.5" />
|
|
<PackageReference Include="TouchSocket.WebApi.Swagger" Version="4.0.0-beta.5" />
|
|
<PackageReference Include="ThingsGateway.Authentication" Version="$(AuthenticationVersion)" />
|
|
<!--<ProjectReference Include="..\..\PluginPro\ThingsGateway.Authentication\ThingsGateway.Authentication.csproj" />-->
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="SeedData\Gateway\*.json" />
|
|
<Content Include="SeedData\Gateway\*.json" Pack="true" PackagePath="\Content\SeedData\Gateway\">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
|
|
<Content Remove="SeedData\Management\*.json" />
|
|
<Content Include="SeedData\Management\*.json" Pack="true" PackagePath="\Content\SeedData\Management\">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
|
|
<Content Remove="SeedData\RulesEngine\*.json" />
|
|
<Content Include="SeedData\RulesEngine\*.json" Pack="true" PackagePath="\Content\SeedData\RulesEngine\">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="Locales\*.json" />
|
|
<EmbeddedResource Include="Locales\*.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Admin\ThingsGateway.Admin.Application\ThingsGateway.Admin.Application.csproj" />
|
|
<ProjectReference Include="..\..\Foundation\ThingsGateway.CSScript\ThingsGateway.CSScript.csproj" />
|
|
<ProjectReference Include="..\..\Foundation\ThingsGateway.Foundation\ThingsGateway.Foundation.csproj" />
|
|
<ProjectReference Include="..\ThingsGateway.Blazor.Diagrams.Core\ThingsGateway.Blazor.Diagrams.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|