You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
970 B
31 lines
970 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<Nullable>disable</Nullable> |
|
<LangVersion>8</LangVersion> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> |
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<DefineConstants>TRACE;NOT_UNITY</DefineConstants> |
|
<OutputPath>..\..\Bin\</OutputPath> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<DefineConstants>TRACE;NOT_UNITY</DefineConstants> |
|
<OutputPath>..\..\Bin\</OutputPath> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
|
|
<Compile Include="..\..\Unity\Assets\ThirdParty\ETTask\**\*.cs"> |
|
<Link>%(RecursiveDir)%(FileName)%(Extension)</Link> |
|
</Compile> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|