-
Notifications
You must be signed in to change notification settings - Fork 0
/
BankApplication.csproj
110 lines (110 loc) · 4.9 KB
/
BankApplication.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1BF0A2B0-8F98-4802-8DD3-81998EEADB69}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BankApplication</RootNamespace>
<AssemblyName>BankApplication</AssemblyName>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="AtkSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\AtkSharp.3.22.24.36\lib\netstandard2.0\AtkSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="CairoSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\CairoSharp.3.22.24.36\lib\netstandard2.0\CairoSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="GdkSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\GdkSharp.3.22.24.36\lib\netstandard2.0\GdkSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="GioSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\GioSharp.3.22.24.36\lib\netstandard2.0\GioSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="GLibSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\GLibSharp.3.22.24.36\lib\netstandard2.0\GLibSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="GtkSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\GtkSharp.3.22.24.36\lib\netstandard2.0\GtkSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="PangoSharp, Version=3.22.24.36, Culture=neutral, PublicKeyToken=null">
<HintPath>packages\PangoSharp.3.22.24.36\lib\netstandard2.0\PangoSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="GUI\CloseAccount.cs" />
<Compile Include="GUI\DialogWindow.cs" />
<Compile Include="GUI\MainWindow.cs" />
<Compile Include="GUI\OpenAccount.cs" />
<Compile Include="GUI\Put.cs" />
<Compile Include="GUI\Transfer.cs" />
<Compile Include="GUI\View.cs" />
<Compile Include="GUI\Withdraw.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="BankLibrary\BankLibrary.csproj">
<Project>{37c3992b-59eb-4f17-9a39-dfc7ff774d93}</Project>
<Name>BankLibrary</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="GUI\BankName.glade" />
<Content Include="GUI\CloseAccount.glade" />
<Content Include="GUI\DialogWindow.glade" />
<Content Include="GUI\OpenAccount.glade" />
<Content Include="GUI\Put.glade" />
<Content Include="GUI\Transfer.glade" />
<Content Include="GUI\View.glade" />
<Content Include="GUI\Withdraw.glade" />
</ItemGroup>
<ItemGroup>
<Resource Include="GUI\MainWindow.glade" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>