1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>portable</DebugType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\YBEE.EQM.Core\YBEE.EQM.Core.csproj" />
- </ItemGroup>
- </Project>
|