forked from KSP-CKAN/CKAN-cmdline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCKAN-cmdline.csproj
66 lines (66 loc) · 2.73 KB
/
CKAN-cmdline.csproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E97D81F6-85E2-4F1F-906D-BE21766602E5}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>CKAN.CmdLine</RootNamespace>
<AssemblyName>CmdLine</AssemblyName>
<StartupObject>CKAN.CmdLine.MainClass</StartupObject>
<ApplicationIcon>assets\ckan.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Transactions" />
<Reference Include="CommandLine">
<HintPath>..\CKAN-core\packages\CommandLineParser.1.9.71\lib\net40\CommandLine.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\CKAN-core\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\CKAN-core\packages\Newtonsoft.Json.6.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="CurlSharp">
<HintPath>..\CKAN-core\packages\curlsharp-v0.5.1-2-gd2d5699\CurlSharp.dll</HintPath>
</Reference>
<Reference Include="CKAN">
<HintPath>..\CKAN-core\bin\Debug\CKAN.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ConsoleUser.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Main.cs" />
<Compile Include="Options.cs" />
<Compile Include="Exit.cs" />
<Compile Include="ProgressReporter.cs" />
<Compile Include="Action\ICommand.cs" />
<Compile Include="Action\ISubCommand.cs" />
<Compile Include="Action\Install.cs" />
<Compile Include="Action\KSP.cs" />
<Compile Include="Action\List.cs" />
<Compile Include="Action\Remove.cs" />
<Compile Include="Action\Repair.cs" />
<Compile Include="Action\Repo.cs" />
<Compile Include="Action\Search.cs" />
<Compile Include="Action\Show.cs" />
<Compile Include="Action\Update.cs" />
<Compile Include="Action\Upgrade.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\CKAN-GUI\CKAN-GUI.csproj">
<Project>{A79F9D54-315C-472B-928F-713A5860B2BE}</Project>
<Name>CKAN-GUI</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
</Project>