| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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.*\Scripts\Model\CodeMode\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.*\Scripts\Model\CodeMode\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Generate\Model\*\Server\**\*.cs">
- <Link>Generate\%(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>
|