mirror of
https://github.com/RawAccelOfficial/rawaccel.git
synced 2025-05-15 05:44:33 +02:00
dependency changes - Newtonsoft.JSON + System.Windows.Forms.DataVisualization + System.Data.SqlClient (indirect, but was not added automatically by NuGet) added ARM64 target
37 lines
No EOL
1.5 KiB
XML
37 lines
No EOL
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<Platforms>ARM64;x64</Platforms>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\</OutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<ApplicationIcon>mouse.ico</ApplicationIcon>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
<AssemblyName>rawaccel</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
|
<PlatformTarget>ARM64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
|
<PlatformTarget>ARM64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
|
<PackageReference Include="System.Windows.Forms.DataVisualization" Version="1.0.0-prerelease.20110.1" />
|
|
<ProjectReference Include="..\wrapper\wrapper.vcxproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |