1
0

System.Diagnostics.Debug.csproj 572 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
  5. <OutputPath>$(SolutionDir)../out/bin/</OutputPath>
  6. <SignAssembly>true</SignAssembly>
  7. <AssemblyOriginatorKeyFile>$(SolutionDir)../tools/Open.snk</AssemblyOriginatorKeyFile>
  8. <AssemblyVersion>4.2.1.0</AssemblyVersion>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\System.Private.CorLib\System.Private.CorLib.csproj" />
  12. </ItemGroup>
  13. </Project>