mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
168 lines
6.9 KiB
XML
168 lines
6.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" 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>
|
|
<ProjectGuid>{B3F3FB6E-B9EB-4F49-9875-D78578BC7AE5}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Wabbajack.Common</RootNamespace>
|
|
<AssemblyName>Wabbajack.Common</AssemblyName>
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<Deterministic>true</Deterministic>
|
|
</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>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</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>
|
|
</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>
|
|
<LangVersion>7.3</LangVersion>
|
|
<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>
|
|
<LangVersion>7.3</LangVersion>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.Numerics" />
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
<Reference Include="System.ServiceModel" />
|
|
<Reference Include="System.Transactions" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="BSDiff.cs" />
|
|
<Compile Include="ChildProcessTracker.cs" />
|
|
<Compile Include="Consts.cs" />
|
|
<Compile Include="CSP\AChannel.cs" />
|
|
<Compile Include="CSP\Box.cs" />
|
|
<Compile Include="CSP\Channel.cs" />
|
|
<Compile Include="CSP\CSPExtensions.cs" />
|
|
<Compile Include="CSP\FixedSizeBuffer.cs" />
|
|
<Compile Include="CSP\FnHandler.cs" />
|
|
<Compile Include="CSP\IBuffer.cs" />
|
|
<Compile Include="CSP\Handler.cs" />
|
|
<Compile Include="CSP\IChannel.cs" />
|
|
<Compile Include="CSP\EnumeratorBuffer.cs" />
|
|
<Compile Include="CSP\ManyToManyChannel.cs" />
|
|
<Compile Include="CSP\PutTaskHandler.cs" />
|
|
<Compile Include="CSP\RingBuffer.cs" />
|
|
<Compile Include="CSP\RxBuffer.cs" />
|
|
<Compile Include="CSP\TakeTaskHandler.cs" />
|
|
<Compile Include="DynamicIniData.cs" />
|
|
<Compile Include="Error States\ErrorResponse.cs" />
|
|
<Compile Include="Error States\GetResponse.cs" />
|
|
<Compile Include="ExtensionManager.cs" />
|
|
<Compile Include="Extensions\DictionaryExt.cs" />
|
|
<Compile Include="Extensions\HashHelper.cs" />
|
|
<Compile Include="Extensions\RxExt.cs" />
|
|
<Compile Include="Extensions\TaskExt.cs" />
|
|
<Compile Include="FileExtractor.cs" />
|
|
<Compile Include="GameMetaData.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SplittingStream.cs" />
|
|
<Compile Include="Utils.cs" />
|
|
<Compile Include="WorkQueue.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="7z.dll.gz" />
|
|
<EmbeddedResource Include="7z.exe.gz" />
|
|
<None Include="app.config" />
|
|
<None Include="CSP\CSP Readme.md" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Compression.BSA\Compression.BSA.csproj">
|
|
<Project>{ff5d892f-8ff4-44fc-8f7f-cd58f307ad1b}</Project>
|
|
<Name>Compression.BSA</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="7z.dll" />
|
|
<Content Include="7z.exe" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="AlphaFS">
|
|
<Version>2.2.6</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Ceras">
|
|
<Version>4.1.7</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="erri120.OMODFramework">
|
|
<Version>1.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="ini-parser">
|
|
<Version>2.5.2</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
<Version>12.0.2</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json.Bson">
|
|
<Version>1.0.2</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Data.HashFunction.xxHash">
|
|
<Version>2.0.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Reactive">
|
|
<Version>4.2.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="YamlDotNet">
|
|
<Version>8.0.0</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup />
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |