| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>8</LangVersion>
- </PropertyGroup>
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net5.0</TargetFramework>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>./Bin</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>./Bin</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="EPPlus" Version="5.5.2" />
- <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" />
- <PackageReference Include="MongoDB.Bson" Version="2.13.0" />
- </ItemGroup>
-
- <ItemGroup>
- <None Update="Template.txt">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <Compile Include="..\..\Unity\Assets\Model\Core\Object\BaseAttribute.cs">
- <Link>BaseAttribute.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Model\Module\Config\ConfigAttribute.cs">
- <Link>ConfigAttribute.cs</Link>
- </Compile>
- <Compile Include="..\..\Unity\Assets\Model\Module\Config\IConfig.cs">
- <Link>IConfig.cs</Link>
- </Compile>
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\ThirdParty\protobuf-net\protobuf-net.csproj" />
- </ItemGroup>
- </Project>
|