Skip to content

Commit

Permalink
attempt to fix packages #50
Browse files Browse the repository at this point in the history
  • Loading branch information
NickStrupat committed Oct 30, 2019
1 parent fa5083b commit 6353e64
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageProjectUrl>https://github.com/NickStrupat/EntityFramework.Triggers</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/NickStrupat/EntityFramework.Triggers/master/LICENSE</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
<PackageId>NickStrupat.EntityFrameworkCore.Triggers.AspNetCore</PackageId>
</PropertyGroup>

Expand All @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EntityFrameworkCore.Triggers" Version="1.2.1" />
<PackageReference Include="EntityFrameworkCore.Triggers" Version="1.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
Expand All @@ -8,7 +8,7 @@
<PackageProjectUrl>https://github.com/NickStrupat/EntityFramework.Triggers</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/NickStrupat/EntityFramework.Triggers/master/LICENSE</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<PackageId>NickStrupat.EntityFrameworkCore.Triggers.Hosting</PackageId>
</PropertyGroup>

Expand All @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EntityFrameworkCore.Triggers" Version="1.2.1" />
<PackageReference Include="EntityFrameworkCore.Triggers" Version="1.2.2" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.0.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net461</TargetFrameworks>
<LangVersion>latest</LangVersion>
<NoWarn>618</NoWarn>
<Description>Supports events for entity inserting, inserted, updating, updated, deleting, and deleted. Also events on insert failure, update failure, and delete failure.</Description>
Expand All @@ -12,9 +12,9 @@
<PackageTags>entity-framework-core;entityframeworkcore;triggers</PackageTags>
<PackageProjectUrl>https://github.com/NickStrupat/EntityFramework.Triggers</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/NickStrupat/EntityFramework.Triggers/master/LICENSE</PackageLicenseUrl>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<FileVersion>1.2.1.0</FileVersion>
<Version>1.2.1</Version>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<FileVersion>1.2.2.0</FileVersion>
<Version>1.2.2</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>EF 6.3.0 support through .NET Standard 2.1. Also moved the `AddTriggers` and `TriggersBuilder` to this library for use from `AspNetCore` and `Hosting` packages</PackageReleaseNotes>
</PropertyGroup>
Expand All @@ -36,8 +36,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.0" Condition="'$(TargetFramework)' != 'netstandard2.1'"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" Condition="'$(TargetFramework)' == 'netstandard2.1'"/>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6353e64

Please sign in to comment.