Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit e628421

Browse files
don't use katananetstandard in not netstandard builds
1 parent c00e09b commit e628421

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/SqlStreamStore.HAL/SqlStreamStore.HAL.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
</PropertyGroup>
1818
<ItemGroup>
1919
<PackageReference Include="Halcyon" Version="2.5.1" />
20-
<PackageReference Include="KatanaNetStandard" Version="3.0.6" />
2120
<PackageReference Include="LibLog" Version="4.2.6" PrivateAssets="All" />
2221
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="1.2.2" />
2322
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
@@ -30,9 +29,13 @@
3029
<Reference Include="Microsoft.CSharp" />
3130
</ItemGroup>
3231
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
32+
<PackageReference Include="KatanaNetStandard" Version="3.0.6" />
3333
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
3434
<PackageReference Include="System.Threading" Version="4.3.0" />
3535
</ItemGroup>
36+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
37+
<PackageReference Include="Microsoft.Owin" Version="3.0.1" />
38+
</ItemGroup>
3639
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
3740
<DefineConstants>$(DefineConstants);LIBLOG_PORTABLE</DefineConstants>
3841
<DebugType>portable</DebugType>

0 commit comments

Comments
 (0)