1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.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>
- <Optimize>false</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\Unity\Assets\Scripts\Codes\Model\Share\**\*.cs">
- <Link>Share\%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="SuperSocket.ClientEngine" Version="0.10.0" />
- <PackageReference Include="SuperSocket.ProtoBase" Version="1.7.0.17" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Share\Analyzer\Share.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
- <ProjectReference Include="..\Core\DotNet.Core.csproj" />
- <ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
- <ProjectReference Include="..\ThirdParty\DotNet.ThirdParty.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Ice">
- <HintPath>..\library\Ice.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|