-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServerListQueryFormDll.csproj
More file actions
74 lines (74 loc) · 3.04 KB
/
ServerListQueryFormDll.csproj
File metadata and controls
74 lines (74 loc) · 3.04 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(EnvironmentConfig)" />
<PropertyGroup>
<OutputType>Library</OutputType>
<AssemblyName>ServerListQueryFormDll</AssemblyName>
<AssemblyClsCompliant>false</AssemblyClsCompliant>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<ProjectGuid>{D983C01F-0CA2-4F6E-AAAD-3BE449F7D10E}</ProjectGuid>
<PlatformTarget>AnyCPU</PlatformTarget>
<DefineConstants>TRACE</DefineConstants>
<OutDir>$(INETROOT)\target\$(BUILDTYPE)\$(BuildArchitecture)\CshOpsTool\PAT</OutDir>
<Optimize>true</Optimize>
<OutputPath>$(INETROOT)\target\$(BUILDTYPE)\$(BuildArchitecture)\CshOpsTool\PAT</OutputPath>
<RootNamespace>ServerListQueryFormDll</RootNamespace>
<FileAlignment>512</FileAlignment>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|amd64'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing">
<HintPath>..\..\..\..\..\..\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms">
<HintPath>..\..\..\..\..\..\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConStrBuilder.cs" />
<Compile Include="SrvListQueryFrm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="SrvListQueryFrm.Designer.cs">
<DependentUpon>SrvListQueryFrm.cs</DependentUpon>
</Compile>
<Compile Include="DataTableHelper.cs" />
<Compile Include="FileHeper.cs" />
<Compile Include="FormBase.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="IQueryView.cs" />
<Compile Include="QueryPresenter.cs" />
<Compile Include="SqlHelper.cs" />
<Compile Include="SqlTextHelper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</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>