1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 |
<PropertyGroup> |
4 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
5 |
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> |
6 |
<ProductVersion>8.0.30703</ProductVersion> |
7 |
<SchemaVersion>2.0</SchemaVersion> |
8 |
<ProjectGuid>{15D5D758-709A-412D-B06D-158477BC9BFC}</ProjectGuid> |
9 |
<OutputType>Exe</OutputType> |
10 |
<AppDesignerFolder>Properties</AppDesignerFolder> |
11 |
<RootNamespace>xmlTools</RootNamespace> |
12 |
<AssemblyName>posUpdate</AssemblyName> |
13 |
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> |
14 |
<TargetFrameworkProfile> |
15 |
</TargetFrameworkProfile> |
16 |
<FileAlignment>512</FileAlignment> |
17 |
<PublishUrl>publish\</PublishUrl> |
18 |
<Install>true</Install> |
19 |
<InstallFrom>Disk</InstallFrom> |
20 |
<UpdateEnabled>false</UpdateEnabled> |
21 |
<UpdateMode>Foreground</UpdateMode> |
22 |
<UpdateInterval>7</UpdateInterval> |
23 |
<UpdateIntervalUnits>Days</UpdateIntervalUnits> |
24 |
<UpdatePeriodically>false</UpdatePeriodically> |
25 |
<UpdateRequired>false</UpdateRequired> |
26 |
<MapFileExtensions>true</MapFileExtensions> |
27 |
<ApplicationRevision>0</ApplicationRevision> |
28 |
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> |
29 |
<IsWebBootstrapper>false</IsWebBootstrapper> |
30 |
<UseApplicationTrust>false</UseApplicationTrust> |
31 |
<BootstrapperEnabled>true</BootstrapperEnabled> |
32 |
</PropertyGroup> |
33 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
34 |
<PlatformTarget>x86</PlatformTarget> |
35 |
<DebugSymbols>true</DebugSymbols> |
36 |
<DebugType>full</DebugType> |
37 |
<Optimize>false</Optimize> |
38 |
<OutputPath>bin\Debug\</OutputPath> |
39 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
40 |
<ErrorReport>prompt</ErrorReport> |
41 |
<WarningLevel>4</WarningLevel> |
42 |
</PropertyGroup> |
43 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
44 |
<PlatformTarget>x86</PlatformTarget> |
45 |
<DebugType>pdbonly</DebugType> |
46 |
<Optimize>true</Optimize> |
47 |
<OutputPath>bin\Release\</OutputPath> |
48 |
<DefineConstants>TRACE</DefineConstants> |
49 |
<ErrorReport>prompt</ErrorReport> |
50 |
<WarningLevel>4</WarningLevel> |
51 |
</PropertyGroup> |
52 |
<ItemGroup> |
53 |
<Reference Include="CLAP"> |
54 |
<HintPath>..\..\..\Libraries\net20\CLAP.dll</HintPath> |
55 |
</Reference> |
56 |
<Reference Include="System" /> |
57 |
<Reference Include="System.Data" /> |
58 |
<Reference Include="System.Xml" /> |
59 |
</ItemGroup> |
60 |
<ItemGroup> |
61 |
<Compile Include="ParametersParser.cs" /> |
62 |
<Compile Include="Util.cs" /> |
63 |
<Compile Include="XmlPatch.cs" /> |
64 |
<Compile Include="XmlTextValue.cs" /> |
65 |
<Compile Include="XmlTools.cs" /> |
66 |
<Compile Include="Program.cs" /> |
67 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
68 |
<Compile Include="XmlNumberValue.cs" /> |
69 |
</ItemGroup> |
70 |
<ItemGroup> |
71 |
<None Include="app.config" /> |
72 |
<None Include="packages.config" /> |
73 |
</ItemGroup> |
74 |
<ItemGroup> |
75 |
<BootstrapperPackage Include="Microsoft.Net.Client.3.5"> |
76 |
<Visible>False</Visible> |
77 |
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName> |
78 |
<Install>false</Install> |
79 |
</BootstrapperPackage> |
80 |
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
81 |
<Visible>False</Visible> |
82 |
<ProductName>.NET Framework 3.5 SP1</ProductName> |
83 |
<Install>true</Install> |
84 |
</BootstrapperPackage> |
85 |
</ItemGroup> |
86 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
87 |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
88 |
Other similar extension points exist, see Microsoft.Common.targets. |
89 |
<Target Name="BeforeBuild"> |
90 |
</Target> |
91 |
<Target Name="AfterBuild"> |
92 |
</Target> |
93 |
--> |
94 |
</Project> |