-
Notifications
You must be signed in to change notification settings - Fork 3
/
mapfWin.csproj
21 lines (21 loc) · 901 Bytes
/
mapfWin.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<StartupObject>mapf.Program</StartupObject>
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\Users\omri\Projects\study\2019semB\agentsPlanning\new-mapf\Backup\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpLearning.XGBoost" Version="0.31.7" />
</ItemGroup>
</Project>