Subversion Repositories ASFLogin

Rev

Rev 55 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 bonfantef 1
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2
  <PropertyGroup>
3
    <ProjectGuid>{D87A422B-1A76-45B6-B243-4FEE54B98BA8}</ProjectGuid>
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6
    <OutputType>Library</OutputType>
7
    <RootNamespace>ASFLogin.Authentication</RootNamespace>
8
    <AssemblyName>ASFLogin.Authentication</AssemblyName>
9
    <DocumentationFile>bin\Release\ASFLogin.Authentication.xml</DocumentationFile>
10
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
11
    <NoStdLib>False</NoStdLib>
12
    <WarningLevel>4</WarningLevel>
13
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
14
    <FileUpgradeFlags>
15
    </FileUpgradeFlags>
16
    <UpgradeBackupLocation>
17
    </UpgradeBackupLocation>
18
    <OldToolsVersion>2.0</OldToolsVersion>
19
  </PropertyGroup>
20
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
21
    <OutputPath>bin\Debug\</OutputPath>
22
    <DebugSymbols>True</DebugSymbols>
23
    <DebugType>Full</DebugType>
24
    <Optimize>False</Optimize>
25
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
26
    <DefineConstants>DEBUG;TRACE</DefineConstants>
27
  </PropertyGroup>
28
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
29
    <OutputPath>bin\Release\</OutputPath>
30
    <DebugSymbols>false</DebugSymbols>
31
    <DebugType>None</DebugType>
32
    <Optimize>True</Optimize>
33
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
34
    <DefineConstants>TRACE</DefineConstants>
35
  </PropertyGroup>
36
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
37
    <RegisterForComInterop>False</RegisterForComInterop>
38
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
39
    <BaseAddress>4194304</BaseAddress>
40
    <PlatformTarget>AnyCPU</PlatformTarget>
41
    <FileAlignment>4096</FileAlignment>
42
  </PropertyGroup>
59 xraver 43
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
44
    <OutputPath>..\..\exe\</OutputPath>
45
    <DocumentationFile>
46
    </DocumentationFile>
47
  </PropertyGroup>
48
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
49
    <DocumentationFile>
50
    </DocumentationFile>
51
  </PropertyGroup>
6 bonfantef 52
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
53
  <ItemGroup>
54
    <Reference Include="System" />
55 bonfantef 55
    <Reference Include="System.configuration" />
6 bonfantef 56
    <Reference Include="System.Xml" />
57
  </ItemGroup>
58
  <ItemGroup>
59
    <Compile Include="AssemblyInfo.cs" />
60
    <Compile Include="AuthException.cs" />
61
    <Compile Include="AuthResult.cs" />
62
    <Compile Include="AuthDirector.cs" />
55 bonfantef 63
    <Compile Include="FingerprintAuthDirector.cs" />
6 bonfantef 64
    <Compile Include="PinAuthDirector.cs" />
65
  </ItemGroup>
66
  <ItemGroup>
67
    <ProjectReference Include="..\Crypt\Crypt.csproj">
68
      <Project>{B7CAFD79-1897-4D90-B2DE-48304417C0DA}</Project>
69
      <Name>Crypt</Name>
70
    </ProjectReference>
71
    <ProjectReference Include="..\Data\Data.csproj">
72
      <Project>{BA46B349-BA83-4ABE-B6D3-BDDDBABD074A}</Project>
73
      <Name>Data</Name>
74
    </ProjectReference>
75
  </ItemGroup>
55 bonfantef 76
  <ItemGroup>
77
    <None Include="App.config" />
78
  </ItemGroup>
6 bonfantef 79
</Project>