| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <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" />
- </ItemGroup>
-
- <ItemGroup>
- <None Update="Template.txt">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\Server\ThirdParty\Server.ThirdParty.csproj" />
- </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>
- </Project>
|