Files
BrightSharp.Toolkit/BrightSharp/BrightSharp.csproj

225 lines
9.5 KiB
XML
Raw Normal View History

2017-01-09 13:25:52 +03:00
<?xml version="1.0" encoding="utf-8"?>
2017-01-01 14:05:19 +03:00
<Project ToolsVersion="14.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>
2017-01-09 13:25:52 +03:00
<ProjectGuid>{ACC3C556-F8E4-4F2A-A23D-8E8749679A1B}</ProjectGuid>
2017-01-01 14:05:19 +03:00
<OutputType>library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BrightSharp</RootNamespace>
<AssemblyName>BrightSharp</AssemblyName>
2017-02-18 00:15:59 +03:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2017-01-01 14:05:19 +03:00
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
2017-02-18 00:15:59 +03:00
<TargetFrameworkProfile />
2017-01-01 14:05:19 +03:00
</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>
2017-02-18 00:15:59 +03:00
<Prefer32Bit>false</Prefer32Bit>
2017-01-01 14:05:19 +03:00
</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>
2017-02-18 00:15:59 +03:00
<Prefer32Bit>false</Prefer32Bit>
2017-01-01 14:05:19 +03:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
2017-01-01 14:05:19 +03:00
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Windows.Interactivity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>G:\repositories\Tps.Next\packages\System.Windows.Interactivity.WPF.2.0.20525\lib\net40\System.Windows.Interactivity.dll</HintPath>
</Reference>
2017-01-01 14:05:19 +03:00
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<Compile Include="Behaviors\FilterDefaultViewTextBoxBehavior.cs" />
<Compile Include="Behaviors\SelectAllTextOnFocusBehavior.cs" />
<Compile Include="Behaviors\MinMaxSize_Logic.cs" />
2017-09-09 11:53:21 +03:00
<Compile Include="Behaviors\WindowMinMaxSizeBehavior.cs" />
2017-01-09 13:25:52 +03:00
<Compile Include="Commands\AsyncCommand.cs" />
<Compile Include="Commands\RelayCommand.cs" />
2017-08-31 13:39:03 +03:00
<Compile Include="Controls\PropertyGrid.cs" />
<Compile Include="Converters\IntToValueConverter.cs" />
<Compile Include="Converters\InverseBooleanToVisibilityConverter.cs" />
2017-01-09 13:25:52 +03:00
<Compile Include="Diagrams\Adorners\ResizeRotateAdorner.cs" />
<Compile Include="Diagrams\Adorners\ResizeRotateChrome.cs" />
<Compile Include="Diagrams\Adorners\SizeAdorner.cs" />
<Compile Include="Diagrams\Adorners\SizeChrome.cs" />
<Compile Include="Diagrams\DesignerItemDecorator.cs" />
2017-02-18 00:15:59 +03:00
<Compile Include="Diagrams\VisualExtensions.cs" />
2017-01-09 13:25:52 +03:00
<Compile Include="Diagrams\SelectionBehavior.cs" />
<Compile Include="Diagrams\Thumbs\MoveThumb.cs" />
<Compile Include="Diagrams\Thumbs\ResizeThumb.cs" />
<Compile Include="Diagrams\Thumbs\RotateThumb.cs" />
<Compile Include="Extensions\WpfExtensions.cs" />
2017-09-09 11:53:21 +03:00
<Compile Include="Interop\Constants.cs" />
<Compile Include="Interop\NativeMethods.cs" />
<Compile Include="Interop\Structures.cs" />
<Compile Include="Themes\Theme.cs">
<DependentUpon>Theme.xaml</DependentUpon>
</Compile>
2017-08-31 13:39:03 +03:00
<Compile Include="Themes\ThemeManager.cs" />
<Compile Include="Diagrams\ZoomControl.cs">
2017-01-01 14:05:19 +03:00
<SubType>Code</SubType>
</Compile>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Controls\PropertyGrid.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Themes\Controls\ZoomControl.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Themes\Generic.xaml">
2017-01-09 13:25:52 +03:00
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Compile Include="Converters\ThicknessConverter.cs" />
<Compile Include="Extensions\MarkupExtensionProperties.cs" />
<None Include="packages.config" />
<None Include="Themes\Theme.Static.cs">
<DependentUpon>Theme.Static.xaml</DependentUpon>
</None>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Diagrams\DesignerItem.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Diagrams\ResizeRotateChrome.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Diagrams\SizeChrome.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Style.Blue.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Themes\Style.Classic.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Style.DarkBlue.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Style.Silver.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Style.DevLab.xaml">
2017-01-09 13:25:52 +03:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2017-08-31 13:39:03 +03:00
<Page Include="Themes\Theme.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
2017-08-31 13:39:03 +03:00
</Page>
<None Include="Themes\Theme.Static.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</None>
2017-01-01 14:05:19 +03:00
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
2017-01-09 13:25:52 +03:00
<ItemGroup>
2017-08-31 13:39:03 +03:00
<Resource Include="Themes\icons\app.png" />
2017-02-18 00:15:59 +03:00
</ItemGroup>
<ItemGroup>
2017-08-31 13:39:03 +03:00
<Resource Include="Themes\icons\copy.png" />
<Resource Include="Themes\icons\cut.png" />
<Resource Include="Themes\icons\paste.png" />
<Resource Include="Themes\icons\undo.png" />
2017-01-09 13:25:52 +03:00
</ItemGroup>
<ItemGroup>
<Folder Include="Docking\" />
</ItemGroup>
2017-01-01 14:05:19 +03:00
<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>
-->
2017-01-09 13:25:52 +03:00
</Project>