| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>disable</Nullable>
- <LangVersion>12</LangVersion>
- <RootNamespace>ET</RootNamespace>
- <AssemblyName>ET.Mathematics</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
- <OutputPath>$(SolutionDir)Bin</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- <NoWarn>0169,0649,3021,8981,NU1903</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <DefineConstants>DOTNET;UNITY_DOTSPLAYER</DefineConstants>
- <OutputPath>$(SolutionDir)Bin</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <NoWarn>0169,0649,3021,8981,NU1903</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\..\Library\PackageCache\com.unity.mathematics*\Unity.Mathematics\**\*.cs">
- <Link>Unity.Mathematics/$([System.String]::new(%(RecursiveDir)).Substring($([System.String]::new(%(RecursiveDir)).Indexof("Unity.Mathematics"))).Replace("Unity.Mathematics", ""))/%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
- </Project>
|