2019-11-12 04:35:07 +00:00
|
|
|
|
<?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>{9E69BC98-1512-4977-B683-6E7E5292C0B8}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Wabbajack.CSP</RootNamespace>
|
|
|
|
|
<AssemblyName>Wabbajack.CSP</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>
|
|
|
|
|
</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>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Reactive, Version=4.2.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\packages\System.Reactive.4.2.0\lib\net46\System.Reactive.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.3\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System.Windows" />
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
<Reference Include="WindowsBase" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="AChannel.cs" />
|
2019-11-12 05:14:04 +00:00
|
|
|
|
<Compile Include="AsyncResult.cs" />
|
2019-11-12 04:35:07 +00:00
|
|
|
|
<Compile Include="Channel.cs" />
|
|
|
|
|
<Compile Include="Extensions.cs" />
|
|
|
|
|
<Compile Include="EnumeratorBuffer.cs" />
|
|
|
|
|
<Compile Include="FixedSizeBuffer.cs" />
|
|
|
|
|
<Compile Include="Handler.cs" />
|
|
|
|
|
<Compile Include="IBuffer.cs" />
|
|
|
|
|
<Compile Include="IChannel.cs" />
|
2019-11-12 05:14:04 +00:00
|
|
|
|
<Compile Include="ICloseable.cs" />
|
|
|
|
|
<Compile Include="IReadPort.cs" />
|
|
|
|
|
<Compile Include="IWritePort.cs" />
|
2019-11-12 04:35:07 +00:00
|
|
|
|
<Compile Include="ManyToManyChannel.cs" />
|
|
|
|
|
<Compile Include="PIpelines.cs" />
|
|
|
|
|
<Compile Include="PutTaskHandler.cs" />
|
|
|
|
|
<Compile Include="RingBuffer.cs" />
|
|
|
|
|
<Compile Include="RxBuffer.cs" />
|
|
|
|
|
<Compile Include="TakeTaskHandler.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="CSP Readme.md" />
|
|
|
|
|
<None Include="packages.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup />
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|