MovieBarcodeGenerator.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{97B87120-43C1-4D85-8D95-FCF56B5FA0F8}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MovieBarcodeGenerator</RootNamespace>
  11. <AssemblyName>MovieBarcodeGenerator</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PropertyGroup>
  35. <ApplicationIcon>Resources\moviebarcode.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="log4net, Version=1.2.14.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  39. <HintPath>..\packages\log4net.2.0.4\lib\net45-full\log4net.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="Magick.NET-Q8-AnyCPU, Version=7.11.0.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
  43. <HintPath>..\packages\Magick.NET-Q8-AnyCPU.7.11.0\lib\net40\Magick.NET-Q8-AnyCPU.dll</HintPath>
  44. </Reference>
  45. <Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
  46. <HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.Configuration" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="BarcodeGenerator.cs" />
  61. <Compile Include="Program.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <Compile Include="SharpFF.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Include="App.config">
  67. <SubType>Designer</SubType>
  68. </None>
  69. <None Include="packages.config" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Content Include="Resources\moviebarcode.ico" />
  73. </ItemGroup>
  74. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  75. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  76. Other similar extension points exist, see Microsoft.Common.targets.
  77. <Target Name="BeforeBuild">
  78. </Target>
  79. <Target Name="AfterBuild">
  80. </Target>
  81. -->
  82. </Project>