-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDiffVHD.csproj
More file actions
117 lines (117 loc) · 5.75 KB
/
DiffVHD.csproj
File metadata and controls
117 lines (117 loc) · 5.75 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
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
111
112
113
114
115
116
117
<?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>{7F64FD16-32C3-4DB7-B677-B2F07FFE3CC4}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DiffVHD</RootNamespace>
<AssemblyName>DiffVHD</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\VMProvisioningAgent\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunCodeAnalysis>false</RunCodeAnalysis>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\DiffVHD.XML</DocumentationFile>
<DebugSymbols>true</DebugSymbols>
<RunCodeAnalysis>false</RunCodeAnalysis>
</PropertyGroup>
<ItemGroup>
<Reference Include="ClrPlus">
<HintPath>..\VMProvisioningAgent\packages\ClrPlus.1.8.0.56\lib\net40\ClrPlus.dll</HintPath>
</Reference>
<Reference Include="DiscUtils">
<HintPath>..\VMProvisioningAgent\packages\Discutils.0.11.0.1\lib\net40\DiscUtils.dll</HintPath>
</Reference>
<Reference Include="DiscUtils.Common">
<HintPath>..\VMProvisioningAgent\packages\Discutils.0.11.0.1\lib\net40\DiscUtils.Common.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\Program Files\Reference Assemblies\Microsoft\WindowsPowerShell\v1.0\System.Management.Automation.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Cdmlets.cs" />
<Compile Include="DiffImport\Core\Constants.cs" />
<Compile Include="DiffImport\Core\Util\Hex.cs" />
<Compile Include="DiffImport\Core\Util\IListUtil.cs" />
<Compile Include="DiffImport\Core\Util\IO.cs" />
<Compile Include="DiffImport\Core\Util\ListIterator.cs" />
<Compile Include="DiffImport\Core\Util\LongList.cs" />
<Compile Include="DiffImport\Core\Util\MessageDigest.cs" />
<Compile Include="DiffImport\Core\Util\MutableInteger.cs" />
<Compile Include="DiffImport\Core\Util\NB.cs" />
<Compile Include="DiffImport\Core\Util\QuotedString.cs" />
<Compile Include="DiffImport\Core\Util\RawParseUtils.cs" />
<Compile Include="DiffImport\Core\Util\Stream.cs" />
<Compile Include="DiffImport\Core\Util\StringExtension.cs" />
<Compile Include="DiffImport\Core\Util\TemporaryBuffer.cs" />
<Compile Include="DiffImport\Text.cs" />
<Compile Include="DiffVHD.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RegDiff.cs" />
<Compile Include="RegistryComparison.cs" />
<Compile Include="DiffImport\Diff.cs" />
<Compile Include="DiffImport\Core\Diff\DiffFormatter.cs" />
<Compile Include="DiffImport\Core\Diff\Edit.cs" />
<Compile Include="DiffImport\Core\Diff\EditList.cs" />
<Compile Include="DiffImport\Core\Diff\MyersDiff.cs" />
<Compile Include="DiffImport\Core\Diff\RawText.cs" />
<Compile Include="DiffImport\Core\Diff\Sequence.cs" />
<Compile Include="DiffImport\Core\Patch\FileHeader.cs" />
<Compile Include="DiffImport\Core\Patch\HunkHeader.cs" />
<Compile Include="DiffImport\Core\Patch\Patch.cs" />
<Compile Include="DiffImport\Core\Util\IntList.cs" />
<Compile Include="DiffImport\Core\Util\JavaHelper\Charset.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="DiffVHD.psd1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="DiffVHD.dll-Help.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
<PostBuildEvent>xcopy $(ProjectDir)$(OutDir)* \apps\Test\DiffVHD\ /y /q</PostBuildEvent>
</PropertyGroup>
<!-- 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>