Encoding.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.0" 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>{A9B33BF4-9B03-4E3D-BF6A-181521046EE8}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>OpenVIII.Encoding</RootNamespace>
  11. <AssemblyName>Encoding</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  20. <DebugSymbols>true</DebugSymbols>
  21. <OutputPath>..\bin\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. <DebugType>full</DebugType>
  26. <PlatformTarget>x64</PlatformTarget>
  27. <LangVersion>latest</LangVersion>
  28. <ErrorReport>prompt</ErrorReport>
  29. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  32. <OutputPath>..\bin\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. <Optimize>true</Optimize>
  36. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  37. <DebugType>pdbonly</DebugType>
  38. <PlatformTarget>x64</PlatformTarget>
  39. <LangVersion>latest</LangVersion>
  40. <ErrorReport>prompt</ErrorReport>
  41. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  44. <DebugSymbols>true</DebugSymbols>
  45. <OutputPath>..\bin\</OutputPath>
  46. <DefineConstants>DEBUG;TRACE</DefineConstants>
  47. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  48. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  49. <DebugType>full</DebugType>
  50. <PlatformTarget>x86</PlatformTarget>
  51. <LangVersion>latest</LangVersion>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  56. <OutputPath>..\bin\</OutputPath>
  57. <DefineConstants>TRACE</DefineConstants>
  58. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  59. <Optimize>true</Optimize>
  60. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  61. <DebugType>pdbonly</DebugType>
  62. <PlatformTarget>x86</PlatformTarget>
  63. <LangVersion>latest</LangVersion>
  64. <ErrorReport>prompt</ErrorReport>
  65. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  66. </PropertyGroup>
  67. <ItemGroup>
  68. <Reference Include="System" />
  69. <Reference Include="System.Core" />
  70. <Reference Include="System.Xml.Linq" />
  71. <Reference Include="System.Data.DataSetExtensions" />
  72. <Reference Include="Microsoft.CSharp" />
  73. <Reference Include="System.Data" />
  74. <Reference Include="System.Net.Http" />
  75. <Reference Include="System.Xml" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Compile Include="Sources\FF8TextDecoder.cs" />
  79. <Compile Include="Sources\FF8TextEncoder.cs" />
  80. <Compile Include="Sources\FF8TextEncoding.cs" />
  81. <Compile Include="Sources\FF8TextEncodingCodepage.cs" />
  82. <Compile Include="Sources\Tags\FF8TextComment.cs" />
  83. <Compile Include="Sources\Tags\FF8TextTag.cs" />
  84. <Compile Include="Sources\Tags\FF8TextTagCharacter.cs" />
  85. <Compile Include="Sources\Tags\FF8TextTagCode.cs" />
  86. <Compile Include="Sources\Tags\FF8TextTagColor.cs" />
  87. <Compile Include="Sources\Tags\FF8TextTagDialog.cs" />
  88. <Compile Include="Sources\Tags\FF8TextTagKey.cs" />
  89. <Compile Include="Sources\Tags\FF8TextTagOption.cs" />
  90. <Compile Include="Sources\Tags\FF8TextTagParam.cs" />
  91. <Compile Include="Sources\Tags\FF8TextTagTerm.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>