UnityEngine.csproj 533 B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <LangVersion>8</LangVersion>
  5. </PropertyGroup>
  6. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. <OutputPath>..\..\Bin\</OutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. <OutputPath>..\..\Bin\</OutputPath>
  13. </PropertyGroup>
  14. </Project>