| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <RootNamespace>ET</RootNamespace>
- </PropertyGroup>
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net5.0</TargetFramework>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>../../ToolsApp/ExcelExporter/</OutputPath>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>../../ToolsApp/ExcelExporter/</OutputPath>
- </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>
|