Subversion Repositories ASFLogin

Rev

Rev 6 | Rev 59 | 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>{E1B25C47-8DA9-475A-B63D-BDD218D4FF41}</ProjectGuid>
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6
    <OutputType>WinExe</OutputType>
7
    <RootNamespace>ASFLogin.AppAccountsManager</RootNamespace>
8
    <AssemblyName>ASFAccountsManager</AssemblyName>
9
    <DocumentationFile>bin\Release\ASFAccountsEditor.xml</DocumentationFile>
10
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
11
    <NoStdLib>False</NoStdLib>
12
    <WarningLevel>4</WarningLevel>
13
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
14
    <ApplicationIcon>ASFAccountsEditor.ico</ApplicationIcon>
15
    <FileUpgradeFlags>
16
    </FileUpgradeFlags>
17
    <UpgradeBackupLocation>
18
    </UpgradeBackupLocation>
19
    <OldToolsVersion>2.0</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)' == 'Debug' ">
37
    <OutputPath>bin\Debug\</OutputPath>
38
    <DebugSymbols>True</DebugSymbols>
39
    <DebugType>Full</DebugType>
40
    <Optimize>False</Optimize>
41
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
42
    <DefineConstants>DEBUG;TRACE</DefineConstants>
43
  </PropertyGroup>
44
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
45
    <OutputPath>bin\Release\</OutputPath>
46
    <DebugSymbols>false</DebugSymbols>
47
    <DebugType>None</DebugType>
48
    <Optimize>True</Optimize>
49
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
50
    <DefineConstants>TRACE</DefineConstants>
51
  </PropertyGroup>
52
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
53
    <RegisterForComInterop>False</RegisterForComInterop>
54
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
55
    <BaseAddress>4194304</BaseAddress>
56
    <PlatformTarget>AnyCPU</PlatformTarget>
57
    <FileAlignment>4096</FileAlignment>
58
  </PropertyGroup>
59
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
60
  <ItemGroup>
61
    <Reference Include="nunit.framework" />
62
    <Reference Include="System" />
63
    <Reference Include="System.Configuration" />
64
    <Reference Include="System.Data" />
65
    <Reference Include="System.Drawing" />
66
    <Reference Include="System.Windows.Forms" />
67
    <Reference Include="System.Xml" />
68
  </ItemGroup>
69
  <ItemGroup>
70
    <Compile Include="AccountDataEditor.cs">
71
      <SubType>Form</SubType>
72
    </Compile>
73
    <Compile Include="AccountDataEditor.Designer.cs">
74
      <DependentUpon>AccountDataEditor.cs</DependentUpon>
75
    </Compile>
76
    <Compile Include="AssemblyInfo.cs" />
77
    <Compile Include="FileTransferClient.cs" />
55 bonfantef 78
    <Compile Include="FingerprintCapture.cs">
79
      <SubType>Form</SubType>
80
    </Compile>
81
    <Compile Include="FingerprintCapture.Designer.cs">
82
      <DependentUpon>FingerprintCapture.cs</DependentUpon>
83
    </Compile>
6 bonfantef 84
    <Compile Include="FormAbout.cs">
85
      <SubType>Form</SubType>
86
    </Compile>
87
    <Compile Include="FormAbout.Designer.cs">
88
      <DependentUpon>FormAbout.cs</DependentUpon>
89
    </Compile>
90
    <Compile Include="MainForm.cs">
91
      <SubType>Form</SubType>
92
    </Compile>
93
    <Compile Include="MainForm.Designer.cs">
94
      <DependentUpon>MainForm.cs</DependentUpon>
95
    </Compile>
96
    <Compile Include="MakeAccountsEditorKey.cs" />
97
    <Compile Include="PasswordInputBox.cs">
98
      <SubType>Form</SubType>
99
    </Compile>
100
    <Compile Include="PasswordInputBox.Designer.cs">
101
      <DependentUpon>PasswordInputBox.cs</DependentUpon>
102
    </Compile>
103
    <Compile Include="PinInputBox.cs">
104
      <SubType>Form</SubType>
105
    </Compile>
106
    <Compile Include="PinInputBox.Designer.cs">
107
      <DependentUpon>PinInputBox.cs</DependentUpon>
108
    </Compile>
109
    <Compile Include="Program.cs" />
55 bonfantef 110
    <Compile Include="Properties\Resources.Designer.cs">
111
      <AutoGen>True</AutoGen>
112
      <DesignTime>True</DesignTime>
113
      <DependentUpon>Resources.resx</DependentUpon>
114
    </Compile>
115
    <Compile Include="Utils.cs" />
6 bonfantef 116
    <EmbeddedResource Include="AccountDataEditor.resx">
117
      <DependentUpon>AccountDataEditor.cs</DependentUpon>
118
      <SubType>Designer</SubType>
119
    </EmbeddedResource>
55 bonfantef 120
    <EmbeddedResource Include="FingerprintCapture.resx">
121
      <DependentUpon>FingerprintCapture.cs</DependentUpon>
122
      <SubType>Designer</SubType>
123
    </EmbeddedResource>
6 bonfantef 124
    <EmbeddedResource Include="FormAbout.resx">
125
      <DependentUpon>FormAbout.cs</DependentUpon>
126
      <SubType>Designer</SubType>
127
    </EmbeddedResource>
128
    <EmbeddedResource Include="MainForm.resx">
129
      <DependentUpon>MainForm.cs</DependentUpon>
130
      <SubType>Designer</SubType>
131
    </EmbeddedResource>
132
    <EmbeddedResource Include="PasswordInputBox.resx">
133
      <DependentUpon>PasswordInputBox.cs</DependentUpon>
134
      <SubType>Designer</SubType>
135
    </EmbeddedResource>
136
    <EmbeddedResource Include="PinInputBox.resx">
137
      <DependentUpon>PinInputBox.cs</DependentUpon>
138
      <SubType>Designer</SubType>
139
    </EmbeddedResource>
55 bonfantef 140
    <EmbeddedResource Include="Properties\Resources.resx">
141
      <Generator>ResXFileCodeGenerator</Generator>
142
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
143
      <SubType>Designer</SubType>
144
    </EmbeddedResource>
6 bonfantef 145
    <None Include="app.config" />
146
  </ItemGroup>
147
  <ItemGroup>
148
    <ProjectReference Include="..\Authentication\Authentication.csproj">
149
      <Project>{D87A422B-1A76-45B6-B243-4FEE54B98BA8}</Project>
150
      <Name>Authentication</Name>
151
    </ProjectReference>
152
    <ProjectReference Include="..\Crypt\Crypt.csproj">
153
      <Project>{B7CAFD79-1897-4D90-B2DE-48304417C0DA}</Project>
154
      <Name>Crypt</Name>
155
    </ProjectReference>
156
    <ProjectReference Include="..\Data\Data.csproj">
157
      <Project>{BA46B349-BA83-4ABE-B6D3-BDDDBABD074A}</Project>
158
      <Name>Data</Name>
159
    </ProjectReference>
160
  </ItemGroup>
161
  <ItemGroup>
162
    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
163
      <Visible>False</Visible>
164
      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
165
      <Install>true</Install>
166
    </BootstrapperPackage>
167
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
168
      <Visible>False</Visible>
169
      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
170
      <Install>false</Install>
171
    </BootstrapperPackage>
172
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
173
      <Visible>False</Visible>
174
      <ProductName>.NET Framework 3.5</ProductName>
175
      <Install>false</Install>
176
    </BootstrapperPackage>
177
  </ItemGroup>
178
</Project>