Ips.Sim.Core.csproj 684 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <RootNamespace>Ips.Sim</RootNamespace>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <DebugType>none</DebugType>
  10. <DebugSymbols>false</DebugSymbols>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  14. <ProjectReference Include="..\..\loc\Ips.Loc.Core\Ips.Loc.Core.csproj" />
  15. <ProjectReference Include="..\..\loc\Ips.Loc32.Core\Ips.Loc32.Core.csproj" />
  16. </ItemGroup>
  17. </Project>