| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>10</LangVersion>
- <AssemblyName>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>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\Codes\Plugins\*\Model\Server\**\*.cs">
- <Link>Server\Plugins\$([System.String]::new(%(RecursiveDir)).Replace('Model\Server',''))%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Codes\Plugins\*\Model\Client\**\*.cs">
- <Link>Client\Plugins\$([System.String]::new(%(RecursiveDir)).Replace('Model\Client',''))%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Codes\Plugins\*\Model\Share\**\*.cs">
- <Link>Share\Plugins\$([System.String]::new(%(RecursiveDir)).Replace('Model\Share',''))%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Mono\Core\**\*.cs">
- <Link>Core\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Codes\Model\Server\**\*.cs">
- <Link>Server\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Codes\Model\Client\**\*.cs">
- <Link>Client\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
-
- <Compile Include="..\..\Codes\Model\Share\**\*.cs">
- <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="..\..\Codes\Generate\Server\**\*.cs">
- <Link>Generate\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Update="ConfigLoader.cs">
- <Link>Server\Module\Config\ConfigLoader.cs</Link>
- </Compile>
-
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Codes\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- <ProjectReference Include="..\Core\DotNet.Core.csproj" />
- <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
- </ItemGroup>
- </Project>
|