Last active
January 29, 2018 05:09
-
-
Save bboyle1234/b6ebcfa36f9ebfd336884d92f246c3bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>net461;netstandard2.0;netcoreapp2.0</TargetFrameworks> | |
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> | |
<AssemblyName>Apex.TradingGrains</AssemblyName> | |
<RootNamespace>Apex.TradingGrains</RootNamespace> | |
<Description>Apex.TradingGrains</Description> | |
<PackageId>Apex.TradingGrains</PackageId> | |
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | |
<Copyright>Copyright Apex Investing, LLC. 2018</Copyright> | |
<Configurations>Debug;Release;DebugLocalProjects</Configurations> | |
<OutputPath>bin\$(Configuration)</OutputPath> | |
</PropertyGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\Apex.TradingGrains.Models\Apex.TradingGrains.Models.csproj" /> | |
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.4" Condition="'$(TargetFramework)'=='netstandard2.0' Or '$(TargetFramework)'=='netcoreapp2.0'" /> | |
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" /> | |
<PackageReference Include="Nito.AsyncEx" Version="4.0.1" /> | |
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | |
</ItemGroup> | |
<ItemGroup Condition="'$(Configuration)'!='DebugLocalProjects'"> | |
<PackageReference Include="Apex.TimeStamps" Version="1.0.10" /> | |
<PackageReference Include="Apex.CQRSOrleans.Models" Version="2.0.11" /> | |
<PackageReference Include="Apex.CQRSOrleans" Version="2.0.11" /> | |
<PackageReference Include="Apex.NadexApi.Models" Version="0.1.3" /> | |
<PackageReference Include="Apex.NadexApi" Version="0.1.3" /> | |
</ItemGroup> | |
<ItemGroup Condition="'$(Configuration)'=='DebugLocalProjects'"> | |
<Reference Include="Apex.TimeStamps"> | |
<HintPath>..\..\..\Apex.TimeStamps\src\Apex.TimeStamps\bin\$(Configuration)\$(TargetFramework)\Apex.TimeStamps.dll</HintPath> | |
</Reference> | |
<Reference Include="Apex.CQRSOrleans.Models"> | |
<HintPath>..\..\..\Apex.CQRSOrleans\src\Apex.CQRSOrleans.Models\bin\$(Configuration)\$(TargetFramework)\Apex.CQRSOrleans.Models.dll</HintPath> | |
</Reference> | |
<Reference Include="Apex.CQRSOrleans"> | |
<HintPath>..\..\..\Apex.CQRSOrleans\src\Apex.CQRSOrleans\bin\$(Configuration)\$(TargetFramework)\Apex.CQRSOrleans.dll</HintPath> | |
</Reference> | |
<Reference Include="Apex.NadexApi.Models"> | |
<HintPath>..\..\..\Apex.NadexApi\src\Apex.NadexApi.Models\bin\$(Configuration)\$(TargetFramework)\Apex.NadexApi.Models.dll</HintPath> | |
</Reference> | |
<Reference Include="Apex.NadexApi"> | |
<HintPath>..\..\..\Apex.NadexApi\src\Apex.NadexApi\bin\$(Configuration)\$(TargetFramework)\Apex.NadexApi.dll</HintPath> | |
</Reference> | |
</ItemGroup> | |
<ItemGroup Condition="'$(TargetFramework)'=='net461'"> | |
<PackageReference Include="Microsoft.Orleans.Core" Version="1.5.3" /> | |
<PackageReference Include="Microsoft.Orleans.Server" Version="1.5.3" /> | |
<PackageReference Include="Microsoft.Orleans.OrleansCodeGenerator.Build" Version="1.5.3" /> | |
</ItemGroup> | |
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' Or '$(TargetFramework)'=='netcoreapp2.0'"> | |
<PackageReference Include="Microsoft.Orleans.Core" Version="2.0.0-beta3" /> | |
<PackageReference Include="Microsoft.Orleans.Server" Version="2.0.0-beta3" /> | |
<PackageReference Include="Microsoft.Orleans.OrleansCodeGenerator.Build" Version="2.0.0-beta3" /> | |
</ItemGroup> | |
<PropertyGroup Condition="'$(IsVSTS)' == 'true'"> | |
<PackageVersion>#{GitVersion.NuGetVersion}#</PackageVersion> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment