2025-03-11 10:24:11 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2025-06-12 09:29:05 +08:00
|
|
|
<TargetFramework>$(DotnetTargetFrameworkVersion)</TargetFramework>
|
2025-05-27 14:27:50 +08:00
|
|
|
<RootNamespace>JiShe.IoT</RootNamespace>
|
2025-03-11 10:24:11 +08:00
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Volo.Abp.TestBase"/>
|
|
|
|
|
<PackageReference Include="Volo.Abp.Autofac"/>
|
|
|
|
|
<PackageReference Include="Volo.Abp.Authorization"/>
|
2025-05-27 14:27:50 +08:00
|
|
|
<ProjectReference Include="..\..\src\JiShe.IoT.Domain\JiShe.IoT.Domain.csproj"/>
|
2025-03-11 10:24:11 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk"/>
|
|
|
|
|
<PackageReference Include="NSubstitute"/>
|
|
|
|
|
<PackageReference Include="Shouldly"/>
|
|
|
|
|
<PackageReference Include="xunit"/>
|
|
|
|
|
<PackageReference Include="xunit.extensibility.execution"/>
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|