MediaBrowser.UI.Controls.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{1ADFE460-FD95-46FA-8871-CCCB4B62E2E8}</ProjectGuid>
  8. <OutputType>library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.UI.Controls</RootNamespace>
  11. <AssemblyName>MediaBrowser.UI.Controls</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Microsoft.Expression.Effects">
  36. <HintPath>..\ThirdParty\Expression\Microsoft.Expression.Effects.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Microsoft.Expression.Interactions">
  39. <HintPath>..\ThirdParty\Expression\Microsoft.Expression.Interactions.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. <Reference Include="Microsoft.CSharp" />
  45. <Reference Include="System.Core" />
  46. <Reference Include="System.Xml.Linq" />
  47. <Reference Include="System.Data.DataSetExtensions" />
  48. <Reference Include="System.Xaml">
  49. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  50. </Reference>
  51. <Reference Include="WindowsBase" />
  52. <Reference Include="PresentationCore" />
  53. <Reference Include="PresentationFramework" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="BaseModalWindow.cs" />
  57. <Compile Include="BaseUserControl.cs" />
  58. <Compile Include="BaseWindow.cs" />
  59. <Compile Include="ExtendedButton.cs" />
  60. <Compile Include="ExtendedCheckbox.cs" />
  61. <Compile Include="ExtendedListBox.cs" />
  62. <Compile Include="ExtendedRadioButton.cs" />
  63. <Compile Include="ExtendedScrollViewer.cs" />
  64. <Compile Include="ItemEventArgs.cs" />
  65. <Compile Include="Properties\AssemblyInfo.cs">
  66. <SubType>Code</SubType>
  67. </Compile>
  68. <Compile Include="Properties\Resources.Designer.cs">
  69. <AutoGen>True</AutoGen>
  70. <DesignTime>True</DesignTime>
  71. <DependentUpon>Resources.resx</DependentUpon>
  72. </Compile>
  73. <Compile Include="Properties\Settings.Designer.cs">
  74. <AutoGen>True</AutoGen>
  75. <DependentUpon>Settings.settings</DependentUpon>
  76. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  77. </Compile>
  78. <Compile Include="ScrollingPanel.cs" />
  79. <Compile Include="TransitionControl.cs" />
  80. <Compile Include="TransitionFrame.cs" />
  81. <Compile Include="TreeHelper.cs" />
  82. <Compile Include="VirtualizingWrapPanel.cs" />
  83. <EmbeddedResource Include="Properties\Resources.resx">
  84. <Generator>ResXFileCodeGenerator</Generator>
  85. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  86. </EmbeddedResource>
  87. <None Include="Properties\Settings.settings">
  88. <Generator>SettingsSingleFileGenerator</Generator>
  89. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  90. </None>
  91. <AppDesigner Include="Properties\" />
  92. </ItemGroup>
  93. <ItemGroup>
  94. <Page Include="Themes\Generic.xaml">
  95. <Generator>MSBuild:Compile</Generator>
  96. <SubType>Designer</SubType>
  97. </Page>
  98. </ItemGroup>
  99. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  100. <PropertyGroup>
  101. <PostBuildEvent>xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i</PostBuildEvent>
  102. </PropertyGroup>
  103. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  104. Other similar extension points exist, see Microsoft.Common.targets.
  105. <Target Name="BeforeBuild">
  106. </Target>
  107. <Target Name="AfterBuild">
  108. </Target>
  109. -->
  110. </Project>