Files
brendan lienau 14c67329dd Updates CSVTools projects and binaries to target anycpu instead of only x86_64
[FYI] Tyler.Staples, Ben.Woodhouse
#tests FC diffs on before and after results of PerfReportFort test cases

[CL 35348616 by brendan lienau in ue5-main branch]
2024-08-06 14:57:13 -04:00

27 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AssemblyTitle>CsvConvert</AssemblyTitle>
<Product>CsvConvert</Product>
<Copyright>Copyright Epic Games, Inc. All rights reserved.</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>anycpu</PlatformTarget>
<OutputPath>..\..\..\..\Binaries\DotNET\CsvTools\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CsvStats\CSVStats.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>