| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>false</ImplicitUsings>
- <Nullable>disable</Nullable>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>8</LangVersion>
- <PackageId>Apps.Tool</PackageId>
- <AssemblyName>Tool</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
-
- <ItemGroup>
- <Compile Include="..\..\Unity\Codes\Model\Core\**\*.cs">
- <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
- <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Apps\Model\Base\**\*.cs">
- <Link>Base\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Codes\Model\Module\Config\**\*.cs">
- <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Codes\Model\Module\Message\OpcodeRangeDefine.cs">
- <Link>Module\Message\OpcodeRangeDefine.cs</Link>
- </Compile>
- </ItemGroup>
-
- <ItemGroup>
- <None Update="Template.txt">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\ThirdParty\Apps.ThirdParty.csproj" />
- </ItemGroup>
- </Project>
|