Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Tools/HeuristicLab.Subversion/SvnForm/SvnForm.csproj @ 13263

Last change on this file since 13263 was 9234, checked in by ascheibe, 11 years ago

#2017 added tools that eyob worked on:

  • HL build center (HeuristicLab.Subversion)
  • a subwcrev replacement
  • 2 own HL apps for up- and downloading Hive jobs from HL files
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{0430BFDA-E962-4A11-979D-6E2982737183}</ProjectGuid>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>SvnForm</RootNamespace>
11    <AssemblyName>SvnForm</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>AnyCPU</PlatformTarget>
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <PlatformTarget>AnyCPU</PlatformTarget>
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="Microsoft.Build" />
36    <Reference Include="Microsoft.Build.Conversion.v4.0" />
37    <Reference Include="Microsoft.Build.Engine" />
38    <Reference Include="Microsoft.Build.Framework" />
39    <Reference Include="SharpSvn">
40      <HintPath>.\SharpSvn.dll</HintPath>
41    </Reference>
42    <Reference Include="System" />
43    <Reference Include="System.Core" />
44    <Reference Include="System.Xml.Linq" />
45    <Reference Include="System.Data.DataSetExtensions" />
46    <Reference Include="Microsoft.CSharp" />
47    <Reference Include="System.Data" />
48    <Reference Include="System.Deployment" />
49    <Reference Include="System.Drawing" />
50    <Reference Include="System.Windows.Forms" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="BuildLogger.cs" />
55    <Compile Include="Program.cs" />
56    <Compile Include="Properties\AssemblyInfo.cs" />
57    <Compile Include="SvnMain.cs">
58      <SubType>Form</SubType>
59    </Compile>
60    <Compile Include="SvnMain.Designer.cs">
61      <DependentUpon>SvnMain.cs</DependentUpon>
62    </Compile>
63    <EmbeddedResource Include="Properties\Resources.resx">
64      <Generator>ResXFileCodeGenerator</Generator>
65      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
66      <SubType>Designer</SubType>
67    </EmbeddedResource>
68    <Compile Include="Properties\Resources.Designer.cs">
69      <AutoGen>True</AutoGen>
70      <DependentUpon>Resources.resx</DependentUpon>
71      <DesignTime>True</DesignTime>
72    </Compile>
73    <EmbeddedResource Include="SvnMain.resx">
74      <DependentUpon>SvnMain.cs</DependentUpon>
75    </EmbeddedResource>
76    <None Include="Properties\Settings.settings">
77      <Generator>SettingsSingleFileGenerator</Generator>
78      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
79    </None>
80    <Compile Include="Properties\Settings.Designer.cs">
81      <AutoGen>True</AutoGen>
82      <DependentUpon>Settings.settings</DependentUpon>
83      <DesignTimeSharedInput>True</DesignTimeSharedInput>
84    </Compile>
85  </ItemGroup>
86  <ItemGroup>
87    <None Include="App.config" />
88  </ItemGroup>
89  <ItemGroup>
90    <None Include="Resources\orange-up-arrow.gif" />
91  </ItemGroup>
92  <ItemGroup>
93    <None Include="Resources\orange-down-arrow.gif" />
94  </ItemGroup>
95  <ItemGroup>
96    <None Include="Resources\ref.png" />
97  </ItemGroup>
98  <ItemGroup>
99    <None Include="Resources\refr.jpg" />
100  </ItemGroup>
101  <ItemGroup>
102    <None Include="Resources\delete.png" />
103  </ItemGroup>
104  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
105  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
106       Other similar extension points exist, see Microsoft.Common.targets.
107  <Target Name="BeforeBuild">
108  </Target>
109  <Target Name="AfterBuild">
110  </Target>
111  -->
112</Project>
Note: See TracBrowser for help on using the repository browser.