-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathIQueryString.csproj
More file actions
52 lines (52 loc) · 2.36 KB
/
IQueryString.csproj
File metadata and controls
52 lines (52 loc) · 2.36 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{59A1D0ED-DA1A-4496-9FF5-2E2417E16AAC}</ProjectGuid>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<UseVSHostingProcess>false</UseVSHostingProcess>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<OutputType>library</OutputType>
<AssemblyName>IQueryString</AssemblyName>
<BaseAddress>4194304</BaseAddress>
<Optimize>true</Optimize>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>.\QueryString.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPathBase>.\</OutputPathBase>
<OutputPath>bin\debug\</OutputPath>
<IntermediateOutputPath>$(OutputPathBase)\obj\$(Configuration)\</IntermediateOutputPath>
<DebugType>pdbonly</DebugType>
<NoWarn>67,108,114,162,168,219,618,649,1699</NoWarn>
<DefineConstants>CODE_ANALYSIS</DefineConstants>
<NoStdLib>false</NoStdLib>
<DebugSymbols>false</DebugSymbols>
<WarningsTreatedAsErrorsList>true</WarningsTreatedAsErrorsList>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data.Linq" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="IQueryString.cs" />
<Compile Include="LogSysInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>