Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PasswordDialog/3.4/HeuristicLab.PasswordDialog-3.4.csproj @ 16857

Last change on this file since 16857 was 16857, checked in by dpiringe, 5 years ago

#2924: separated PasswordDialog from HeuristicLab.Clients.Common into new Project called HeuristicLab.PasswordDialog and migrated HeuristicLab.Clients.Common to .NET Standard

File size: 4.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" 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>{632E2C03-FA6F-4540-8AF0-6B4D60F99F26}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <RootNamespace>HeuristicLab.PasswordDialog</RootNamespace>
10    <AssemblyName>HeuristicLab.PasswordDialog</AssemblyName>
11    <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14    <Deterministic>true</Deterministic>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <PlatformTarget>AnyCPU</PlatformTarget>
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>..\..\bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <PlatformTarget>AnyCPU</PlatformTarget>
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <PropertyGroup>
36    <StartupObject />
37  </PropertyGroup>
38  <PropertyGroup>
39    <SignAssembly>true</SignAssembly>
40  </PropertyGroup>
41  <PropertyGroup>
42    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
43  </PropertyGroup>
44  <ItemGroup>
45    <None Include="App.config" />
46    <None Include="HeuristicLab.snk" />
47    <None Include="packages.config" />
48  </ItemGroup>
49  <ItemGroup>
50    <Reference Include="System" />
51    <Reference Include="System.ComponentModel.Composition" />
52    <Reference Include="System.Configuration" />
53    <Reference Include="System.Configuration.ConfigurationManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
54      <HintPath>..\packages\System.Configuration.ConfigurationManager.4.5.0\lib\net461\System.Configuration.ConfigurationManager.dll</HintPath>
55    </Reference>
56    <Reference Include="System.Data" />
57    <Reference Include="System.Data.OracleClient" />
58    <Reference Include="System.Drawing" />
59    <Reference Include="System.Net" />
60    <Reference Include="System.Security.AccessControl, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
61      <HintPath>..\packages\System.Security.AccessControl.4.5.0\lib\net461\System.Security.AccessControl.dll</HintPath>
62    </Reference>
63    <Reference Include="System.Security.Permissions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
64      <HintPath>..\packages\System.Security.Permissions.4.5.0\lib\net461\System.Security.Permissions.dll</HintPath>
65    </Reference>
66    <Reference Include="System.Security.Principal.Windows, Version=4.1.1.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
67      <HintPath>..\packages\System.Security.Principal.Windows.4.5.1\lib\net461\System.Security.Principal.Windows.dll</HintPath>
68    </Reference>
69    <Reference Include="System.ServiceProcess" />
70    <Reference Include="System.Transactions" />
71    <Reference Include="System.Windows.Forms" />
72    <Reference Include="System.Xml" />
73  </ItemGroup>
74  <ItemGroup>
75    <Compile Include="PasswordDialog.cs">
76      <SubType>Form</SubType>
77    </Compile>
78    <Compile Include="PasswordDialog.Designer.cs">
79      <DependentUpon>PasswordDialog.cs</DependentUpon>
80    </Compile>
81  </ItemGroup>
82  <ItemGroup>
83    <ProjectReference Include="..\..\HeuristicLab.Clients.Common\3.3\HeuristicLab.Clients.Common-3.3.csproj">
84      <Project>{730a9104-d4d1-4360-966b-e49b7571dda3}</Project>
85      <Name>HeuristicLab.Clients.Common-3.3</Name>
86    </ProjectReference>
87  </ItemGroup>
88  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89</Project>
Note: See TracBrowser for help on using the repository browser.