Clone of UAS2 @ https://github.com/drudgedance/uas2

UAS2 launcher.csproj 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" 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.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{6C9B20C1-1F7C-4F92-AEFF-44D8D4C40A75}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>UAS2_launcher</RootNamespace>
  12. <AssemblyName>UAS2 launcher</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <PublishUrl>publish\</PublishUrl>
  16. <Install>true</Install>
  17. <InstallFrom>Disk</InstallFrom>
  18. <UpdateEnabled>false</UpdateEnabled>
  19. <UpdateMode>Foreground</UpdateMode>
  20. <UpdateInterval>7</UpdateInterval>
  21. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  22. <UpdatePeriodically>false</UpdatePeriodically>
  23. <UpdateRequired>false</UpdateRequired>
  24. <MapFileExtensions>true</MapFileExtensions>
  25. <ApplicationRevision>0</ApplicationRevision>
  26. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  27. <IsWebBootstrapper>false</IsWebBootstrapper>
  28. <UseApplicationTrust>false</UseApplicationTrust>
  29. <BootstrapperEnabled>true</BootstrapperEnabled>
  30. <ApplicationIcon>ASHERON.ICO</ApplicationIcon>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  33. <DebugSymbols>true</DebugSymbols>
  34. <DebugType>full</DebugType>
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Debug\</OutputPath>
  37. <DefineConstants>DEBUG;TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  42. <DebugType>pdbonly</DebugType>
  43. <Optimize>true</Optimize>
  44. <OutputPath>bin\Release\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core">
  52. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  53. </Reference>
  54. <Reference Include="System.Xml.Linq">
  55. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  56. </Reference>
  57. <Reference Include="System.Data.DataSetExtensions">
  58. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  59. </Reference>
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Deployment" />
  62. <Reference Include="System.Drawing" />
  63. <Reference Include="System.Windows.Forms" />
  64. <Reference Include="System.Xml" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Form1.cs">
  68. <SubType>Form</SubType>
  69. </Compile>
  70. <Compile Include="Form1.Designer.cs">
  71. <DependentUpon>Form1.cs</DependentUpon>
  72. </Compile>
  73. <Compile Include="Program.cs" />
  74. <Compile Include="Properties\AssemblyInfo.cs" />
  75. <EmbeddedResource Include="Form1.resx">
  76. <DependentUpon>Form1.cs</DependentUpon>
  77. </EmbeddedResource>
  78. <EmbeddedResource Include="Properties\Resources.resx">
  79. <Generator>ResXFileCodeGenerator</Generator>
  80. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  81. <SubType>Designer</SubType>
  82. </EmbeddedResource>
  83. <Compile Include="Properties\Resources.Designer.cs">
  84. <AutoGen>True</AutoGen>
  85. <DependentUpon>Resources.resx</DependentUpon>
  86. </Compile>
  87. <None Include="app.config" />
  88. <None Include="Properties\Settings.settings">
  89. <Generator>SettingsSingleFileGenerator</Generator>
  90. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  91. </None>
  92. <Compile Include="Properties\Settings.Designer.cs">
  93. <AutoGen>True</AutoGen>
  94. <DependentUpon>Settings.settings</DependentUpon>
  95. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  96. </Compile>
  97. </ItemGroup>
  98. <ItemGroup>
  99. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  100. <Visible>False</Visible>
  101. <ProductName>.NET Framework Client Profile</ProductName>
  102. <Install>false</Install>
  103. </BootstrapperPackage>
  104. <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
  105. <Visible>False</Visible>
  106. <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
  107. <Install>false</Install>
  108. </BootstrapperPackage>
  109. <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
  110. <Visible>False</Visible>
  111. <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
  112. <Install>false</Install>
  113. </BootstrapperPackage>
  114. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
  115. <Visible>False</Visible>
  116. <ProductName>.NET Framework 3.5</ProductName>
  117. <Install>false</Install>
  118. </BootstrapperPackage>
  119. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  120. <Visible>False</Visible>
  121. <ProductName>.NET Framework 3.5 SP1</ProductName>
  122. <Install>true</Install>
  123. </BootstrapperPackage>
  124. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  125. <Visible>False</Visible>
  126. <ProductName>Windows Installer 3.1</ProductName>
  127. <Install>true</Install>
  128. </BootstrapperPackage>
  129. </ItemGroup>
  130. <ItemGroup>
  131. <Content Include="ASHERON.ICO" />
  132. </ItemGroup>
  133. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  134. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  135. Other similar extension points exist, see Microsoft.Common.targets.
  136. <Target Name="BeforeBuild">
  137. </Target>
  138. <Target Name="AfterBuild">
  139. </Target>
  140. -->
  141. </Project>