-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVrpTest.csproj
More file actions
73 lines (69 loc) · 2.82 KB
/
VrpTest.csproj
File metadata and controls
73 lines (69 loc) · 2.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<OutputType>Exe</OutputType>
<LangVersion>7.3</LangVersion>
<TargetFrameworks>netcoreapp2.1;net471</TargetFrameworks>
<EnableDefaultItems>false</EnableDefaultItems>
<RestoreSources>../../../packages;$(RestoreSources);https://api.nuget.org/v3/index.json</RestoreSources>
<AssemblyName>Google.OrTools.VrpTest</AssemblyName>
<IsPackable>true</IsPackable>
<Platforms>AnyCPU;x64</Platforms>
<StartupObject></StartupObject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<GenerateTailCalls>true</GenerateTailCalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="ConfigParams.cs" />
<Compile Include="DataInput.cs" />
<Compile Include="DataOutput.cs" />
<Compile Include="Struct\Day.cs" />
<Compile Include="Struct\LocationDB.cs" />
<Compile Include="Struct\Position.cs" />
<Compile Include="VrpTest\DistanceMatrixInit.cs" />
<Compile Include="VrpTest\GetInput.cs" />
<Compile Include="Interface\IDataInput.cs" />
<Compile Include="Interface\IDataOutput.cs" />
<Compile Include="JsonClasses.cs" />
<Compile Include="Struct\Location.cs" />
<Compile Include="Struct\Period.cs" />
<Compile Include="VrpTest\SetLocationsForDays.cs" />
<Compile Include="VrpTest\SolveForDay.cs" />
<Compile Include="Struct\Vehicle.cs" />
<Compile Include="VrpProblem\VrpProblem.cs" />
<Compile Include="VrpTest\SolveForPeriod.cs" />
<Compile Include="VrpTest\TimeMatrixOperations.cs" />
<Compile Include="VrpTest\VrpTest.cs" />
<Compile Include="VrpProblem\TimeWindowInit.cs" />
<Content Include="Docs\README.txt" />
<Content Include="Docs\RouteData.txt" />
<Content Include="Docs\TimeMatrixLG.json" />
<None Include="Docs\SQLQueries.sql" />
<PackageReference Include="Google.OrTools" Version="7.3.7083" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System">
<HintPath>System</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>System.Data</HintPath>
</Reference>
<Reference Include="System.Drawing">
<HintPath>System.Drawing</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>System.Xml</HintPath>
</Reference>
</ItemGroup>
</Project>