mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
91 lines
3.7 KiB
XML
91 lines
3.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<PropertyGroup>
|
|||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|||
|
<ProductVersion>9.0.30729</ProductVersion>
|
|||
|
<SchemaVersion>2.0</SchemaVersion>
|
|||
|
<ProjectGuid>{BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}</ProjectGuid>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|||
|
<RootNamespace>XenCenterVNC</RootNamespace>
|
|||
|
<AssemblyName>XenCenterVNC</AssemblyName>
|
|||
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|||
|
<FileAlignment>512</FileAlignment>
|
|||
|
<TargetFrameworkSubset>
|
|||
|
</TargetFrameworkSubset>
|
|||
|
</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>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
</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>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<SpecificVersion>False</SpecificVersion>
|
|||
|
<HintPath>..\log4net\build\bin\net\2.0\release\log4net.dll</HintPath>
|
|||
|
</Reference>
|
|||
|
<Reference Include="System" />
|
|||
|
<Reference Include="System.Core">
|
|||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|||
|
</Reference>
|
|||
|
<Reference Include="System.Drawing" />
|
|||
|
<Reference Include="System.Windows.Forms" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="GraphicsUtils.cs" />
|
|||
|
<Compile Include="IVNCGraphicsClient.cs" />
|
|||
|
<Compile Include="KeyMap.cs" />
|
|||
|
<Compile Include="KeyMap.Designer.cs">
|
|||
|
<DependentUpon>KeyMap.resx</DependentUpon>
|
|||
|
<AutoGen>True</AutoGen>
|
|||
|
<DesignTime>True</DesignTime>
|
|||
|
</Compile>
|
|||
|
<Compile Include="KeySet.cs" />
|
|||
|
<Compile Include="MyStream.cs" />
|
|||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|||
|
<Compile Include="ProtocolVersion.cs" />
|
|||
|
<Compile Include="VNCException.cs" />
|
|||
|
<Compile Include="VNCStream.cs" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<EmbeddedResource Include="KeyMap.resx">
|
|||
|
<DependentUpon>KeyMap.cs</DependentUpon>
|
|||
|
<Generator>ResXFileCodeGenerator</Generator>
|
|||
|
<LastGenOutput>KeyMap.Designer.cs</LastGenOutput>
|
|||
|
<SubType>Designer</SubType>
|
|||
|
</EmbeddedResource>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<None Include="app.config" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\XenCenterLib\XenCenterLib.csproj">
|
|||
|
<Project>{9861DFA1-B41F-432D-A43F-226257DEBBB9}</Project>
|
|||
|
<Name>XenCenterLib</Name>
|
|||
|
</ProjectReference>
|
|||
|
</ItemGroup>
|
|||
|
<Import Project="$(MSBuildBinPath)\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>
|