Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2233 | - | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||
3 | <PropertyGroup> |
||
4 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
||
5 | <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
||
6 | <ProductVersion>9.0.21022</ProductVersion> |
||
7 | <SchemaVersion>2.0</SchemaVersion> |
||
8 | <ProjectGuid>{0B51DDDC-0917-493E-A0BD-73192A1C4649}</ProjectGuid> |
||
9 | <OutputType>WinExe</OutputType> |
||
10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
||
11 | <RootNamespace>MKLiveView</RootNamespace> |
||
12 | <AssemblyName>MKLiveView</AssemblyName> |
||
13 | <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
||
14 | <FileAlignment>512</FileAlignment> |
||
15 | <FileUpgradeFlags> |
||
16 | </FileUpgradeFlags> |
||
17 | <UpgradeBackupLocation> |
||
18 | </UpgradeBackupLocation> |
||
19 | <OldToolsVersion>3.5</OldToolsVersion> |
||
20 | <PublishUrl>publish\</PublishUrl> |
||
21 | <Install>true</Install> |
||
22 | <InstallFrom>Disk</InstallFrom> |
||
23 | <UpdateEnabled>false</UpdateEnabled> |
||
24 | <UpdateMode>Foreground</UpdateMode> |
||
25 | <UpdateInterval>7</UpdateInterval> |
||
26 | <UpdateIntervalUnits>Days</UpdateIntervalUnits> |
||
27 | <UpdatePeriodically>false</UpdatePeriodically> |
||
28 | <UpdateRequired>false</UpdateRequired> |
||
29 | <MapFileExtensions>true</MapFileExtensions> |
||
30 | <ApplicationRevision>0</ApplicationRevision> |
||
31 | <ApplicationVersion>1.0.0.%2a</ApplicationVersion> |
||
32 | <IsWebBootstrapper>false</IsWebBootstrapper> |
||
33 | <UseApplicationTrust>false</UseApplicationTrust> |
||
34 | <BootstrapperEnabled>true</BootstrapperEnabled> |
||
35 | </PropertyGroup> |
||
36 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
||
37 | <DebugSymbols>true</DebugSymbols> |
||
38 | <DebugType>full</DebugType> |
||
39 | <Optimize>false</Optimize> |
||
40 | <OutputPath>bin\Debug\</OutputPath> |
||
41 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
42 | <ErrorReport>prompt</ErrorReport> |
||
43 | <WarningLevel>4</WarningLevel> |
||
44 | </PropertyGroup> |
||
45 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
||
46 | <DebugType>pdbonly</DebugType> |
||
47 | <Optimize>true</Optimize> |
||
48 | <OutputPath>bin\Release\</OutputPath> |
||
49 | <DefineConstants>TRACE</DefineConstants> |
||
50 | <ErrorReport>prompt</ErrorReport> |
||
51 | <WarningLevel>4</WarningLevel> |
||
52 | </PropertyGroup> |
||
53 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> |
||
54 | <DebugSymbols>true</DebugSymbols> |
||
55 | <OutputPath>bin\x86\Debug\</OutputPath> |
||
56 | <DefineConstants>DEBUG;TRACE</DefineConstants> |
||
57 | <DebugType>full</DebugType> |
||
58 | <PlatformTarget>x86</PlatformTarget> |
||
59 | <ErrorReport>prompt</ErrorReport> |
||
60 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
61 | </PropertyGroup> |
||
62 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> |
||
63 | <OutputPath>bin\x86\Release\</OutputPath> |
||
64 | <DefineConstants>TRACE</DefineConstants> |
||
65 | <Optimize>true</Optimize> |
||
66 | <DebugType>pdbonly</DebugType> |
||
67 | <PlatformTarget>x86</PlatformTarget> |
||
68 | <ErrorReport>prompt</ErrorReport> |
||
69 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
||
70 | </PropertyGroup> |
||
71 | <PropertyGroup> |
||
72 | <ApplicationIcon>MK.ico</ApplicationIcon> |
||
73 | </PropertyGroup> |
||
74 | <ItemGroup> |
||
75 | <Reference Include="Microsoft.VisualBasic" /> |
||
76 | <Reference Include="System" /> |
||
77 | <Reference Include="System.Core"> |
||
78 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
||
79 | </Reference> |
||
80 | <Reference Include="System.Xml.Linq"> |
||
81 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
||
82 | </Reference> |
||
83 | <Reference Include="System.Data.DataSetExtensions"> |
||
84 | <RequiredTargetFramework>3.5</RequiredTargetFramework> |
||
85 | </Reference> |
||
86 | <Reference Include="System.Data" /> |
||
87 | <Reference Include="System.Deployment" /> |
||
88 | <Reference Include="System.Drawing" /> |
||
89 | <Reference Include="System.Windows.Forms" /> |
||
90 | <Reference Include="System.Xml" /> |
||
91 | </ItemGroup> |
||
92 | <ItemGroup> |
||
93 | <Compile Include="ExternControl.cs" /> |
||
94 | <Compile Include="FlightControllerMessage.cs" /> |
||
95 | <Compile Include="MainForm.cs"> |
||
96 | <SubType>Form</SubType> |
||
97 | </Compile> |
||
98 | <Compile Include="MainForm.Designer.cs"> |
||
99 | <DependentUpon>MainForm.cs</DependentUpon> |
||
100 | </Compile> |
||
101 | <Compile Include="Program.cs" /> |
||
102 | <Compile Include="Properties\AssemblyInfo.cs" /> |
||
2257 | - | 103 | <Compile Include="Waypoints.cs" /> |
2274 | - | 104 | <EmbeddedResource Include="MainForm.de.resx"> |
105 | <DependentUpon>MainForm.cs</DependentUpon> |
||
106 | </EmbeddedResource> |
||
2233 | - | 107 | <EmbeddedResource Include="MainForm.resx"> |
108 | <DependentUpon>MainForm.cs</DependentUpon> |
||
109 | </EmbeddedResource> |
||
110 | <EmbeddedResource Include="Properties\Resources.resx"> |
||
111 | <Generator>ResXFileCodeGenerator</Generator> |
||
112 | <LastGenOutput>Resources.Designer.cs</LastGenOutput> |
||
113 | <SubType>Designer</SubType> |
||
114 | </EmbeddedResource> |
||
115 | <Compile Include="Properties\Resources.Designer.cs"> |
||
116 | <AutoGen>True</AutoGen> |
||
117 | <DependentUpon>Resources.resx</DependentUpon> |
||
118 | <DesignTime>True</DesignTime> |
||
119 | </Compile> |
||
120 | <None Include="Properties\Settings.settings"> |
||
121 | <Generator>SettingsSingleFileGenerator</Generator> |
||
122 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
123 | </None> |
||
124 | <Compile Include="Properties\Settings.Designer.cs"> |
||
125 | <AutoGen>True</AutoGen> |
||
126 | <DependentUpon>Settings.settings</DependentUpon> |
||
127 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
128 | </Compile> |
||
129 | </ItemGroup> |
||
130 | <ItemGroup> |
||
131 | <ProjectReference Include="AvionicsInstrumentControl\AvionicsInstrumentControl.csproj"> |
||
132 | <Project>{1D3163E6-DC65-4595-9D51-4FD9174F2F61}</Project> |
||
133 | <Name>AvionicsInstrumentControl</Name> |
||
134 | </ProjectReference> |
||
135 | <ProjectReference Include="ArtificialHorizon\ArtificialHorizon.vbproj"> |
||
136 | <Project>{c5619ca3-e737-4a3b-ae7b-76e8a6ab4930}</Project> |
||
137 | <Name>ArtificialHorizon</Name> |
||
138 | </ProjectReference> |
||
139 | <ProjectReference Include="EasySerialPort\SimpleSerialPort.csproj"> |
||
140 | <Project>{D7450AA6-F964-487D-B2AA-661D0908A7EE}</Project> |
||
141 | <Name>SimpleSerialPort</Name> |
||
142 | </ProjectReference> |
||
143 | </ItemGroup> |
||
144 | <ItemGroup> |
||
145 | <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
||
146 | <Visible>False</Visible> |
||
147 | <ProductName>.NET Framework 3.5 SP1</ProductName> |
||
148 | <Install>true</Install> |
||
149 | </BootstrapperPackage> |
||
150 | </ItemGroup> |
||
151 | <ItemGroup> |
||
152 | <Content Include="MK.ico" /> |
||
153 | </ItemGroup> |
||
154 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
||
155 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
||
156 | Other similar extension points exist, see Microsoft.Common.targets. |
||
157 | <Target Name="BeforeBuild"> |
||
158 | </Target> |
||
159 | <Target Name="AfterBuild"> |
||
160 | </Target> |
||
161 | --> |
||
162 | </Project> |