forked from iliaplatone/indisharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINDI.csproj
78 lines (78 loc) · 3.73 KB
/
INDI.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
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.props" Condition="Exists('packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0A0135CD-ABA9-47D6-B963-2B2ECFCDB4E8}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>INDI</RootNamespace>
<AssemblyName>INDI</AssemblyName>
<PackageId>INDISharp.INDI</PackageId>
<PackageVersion>0.8.0</PackageVersion>
<Authors>Ilia Platone</Authors>
<PackageIconUrl>https://indilib.org/images/indi_logo.png</PackageIconUrl>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseUrl>https://www.gnu.org/licenses/gpl-3.0.txt</PackageLicenseUrl>
<Owners>Ilia Platone</Owners>
<PackageProjectUrl>https://indilib.org</PackageProjectUrl>
<Summary>INDILib porting to a C# DLL: automation & control of astronomical instruments</Summary>
<PackageTags>astronomy; remote control; indilib; indi; linux; windows; ccd; telescope; stars</PackageTags>
<Title>INDI#</Title>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<Description>INDILib porting to a C# DLL: automation & control of astronomical instruments</Description>
<PackOnBuild>true</PackOnBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="INDIDevice.cs" />
<Compile Include="INDIDome.cs" />
<Compile Include="INDIFilterWheel.cs" />
<Compile Include="INDIFocuser.cs" />
<Compile Include="INDIServer.cs" />
<Compile Include="INDIClient.cs" />
<Compile Include="INDIBaseDevice.cs" />
<Compile Include="INDIProperty.cs" />
<Compile Include="INDIForms.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="INDITelescope.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="INDICamera.cs" />
<Compile Include="INDIDetector.cs" />
<Compile Include="INDISpectrograph.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="indisharp.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)/Microsoft.CSharp.targets" />
<Import Project="packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.targets" Condition="Exists('packages\NuGet.Build.Packaging.0.2.0\build\NuGet.Build.Packaging.targets')" />
</Project>