2020-12-02 06:57:13 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-06-22 14:32:25 -04:00
|
|
|
|
<PropertyGroup>
|
2020-12-21 19:26:55 -04:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-06-22 14:32:25 -04:00
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Development</Configuration>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<RootNamespace>Tools.DotNETCommon</RootNamespace>
|
2020-12-02 06:57:13 -04:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
|
|
|
|
<Configurations>Debug;Release;Development</Configurations>
|
2020-06-22 14:32:25 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2020-12-02 06:57:13 -04:00
|
|
|
|
<DocumentationFile></DocumentationFile>
|
2020-06-22 14:32:25 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
|
2020-12-02 06:57:13 -04:00
|
|
|
|
<DocumentationFile></DocumentationFile>
|
2020-06-22 14:32:25 -04:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
2020-12-02 06:57:13 -04:00
|
|
|
|
<DocumentationFile></DocumentationFile>
|
2020-06-22 14:32:25 -04:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
2020-12-02 06:57:13 -04:00
|
|
|
|
|
2020-06-22 14:32:25 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\MetaData.cs">
|
|
|
|
|
|
<Link>Properties\MetaData.cs</Link>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2020-12-21 23:07:37 -04:00
|
|
|
|
<ProjectReference Include="..\..\Shared\EpicGames.Core\EpicGames.Core.csproj" />
|
2020-12-02 06:57:13 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
2020-06-22 14:32:25 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|