| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>12</LangVersion>
- <AssemblyName>ET.Model</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>false</Optimize>
- <NoWarn>0169,0649,3021,8981,CS9193,CS9192</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- <NoWarn>0169,0649,3021,8981,CS9193,CS9192</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\Unity\Library\PackageCache\com.et.*\Scripts\Model\Share\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Library\PackageCache\com.et.*\Scripts\Model\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Library\PackageCache\com.et.*\CodeMode\Model\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Packages\com.et.*\Scripts\Model\Share\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Packages\com.et.*\Scripts\Model\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Packages\com.et.*\CodeMode\Model\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
-
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Share\Analyzer\ET.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- <ProjectReference Include="..\..\Share\SourceGenerator\ET.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- <ProjectReference Include="..\..\Unity\Packages\com.et.core\DotNet~\ET.Core.csproj" />
- <ProjectReference Include="..\..\Unity\Packages\com.et.loader\DotNet~\ET.Loader.csproj" />
- <ProjectReference Include="..\..\Unity\Packages\com.et.mathematics\DotNet~\ET.Mathematics.csproj" />
- <ProjectReference Include="..\..\Unity\Packages\com.et.recast\DotNet~\ET.Recast.csproj" />
- </ItemGroup>
- </Project>
|