Skip to content

Commit 7819ce4

Browse files
committed
netstandard2.0 (#112)
1 parent ca7160d commit 7819ce4

File tree

3 files changed

+38
-8
lines changed

3 files changed

+38
-8
lines changed

appveyor.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ build_script:
3434
- dotnet restore test\EntityFramework.DynamicLinq.Tests\EntityFramework.DynamicLinq.Tests.csproj
3535

3636
# Build Code
37-
- dotnet build src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj -c %CONFIGURATION% --framework netstandard1.3
3837
- dotnet build src\EntityFramework.DynamicLinq\EntityFramework.DynamicLinq.csproj -c %CONFIGURATION%
38+
- dotnet build src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj -c %CONFIGURATION% --framework netstandard1.3
3939
- dotnet build src\Microsoft.EntityFrameworkCore.DynamicLinq\Microsoft.EntityFrameworkCore.DynamicLinq.csproj -c %CONFIGURATION% --framework netstandard1.3
40+
- dotnet build src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj -c %CONFIGURATION% --framework netstandard2.0
41+
- dotnet build src\Microsoft.EntityFrameworkCore.DynamicLinq\Microsoft.EntityFrameworkCore.DynamicLinq.csproj -c %CONFIGURATION% --framework netstandard2.0
4042

4143
# Build Tests
4244
- dotnet build test\System.Linq.Dynamic.Core.Tests\System.Linq.Dynamic.Core.Tests.csproj -c %CONFIGURATION%

src/Microsoft.EntityFrameworkCore.DynamicLinq/Microsoft.EntityFrameworkCore.DynamicLinq.AppVeyor.csproj

+20-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description>
44
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle>
5-
<VersionPrefix>1.0.4.7</VersionPrefix>
5+
<VersionPrefix>1.0.4.8</VersionPrefix>
66
<Authors>Stef Heyenrath</Authors>
77
<TargetFrameworks>net451;net46;netstandard1.3;netstandard2.0</TargetFrameworks>
88
<DefineConstants>$(DefineConstants);EFCORE</DefineConstants>
@@ -32,7 +32,7 @@
3232
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
3333
</PropertyGroup>
3434

35-
<!--<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
35+
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
3636
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
3737
<NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
3838
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
@@ -42,7 +42,7 @@
4242
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
4343
<DefineConstants>$(DefineConstants);WINDOWS_UWP;UAP10_0</DefineConstants>
4444
<LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
45-
</PropertyGroup>-->
45+
</PropertyGroup>
4646

4747
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
4848
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
@@ -67,29 +67,43 @@
6767
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
6868
<Reference Include="System" />
6969
<Reference Include="Microsoft.CSharp" />
70+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
7071
</ItemGroup>
7172

7273
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
7374
<Reference Include="System" />
7475
<Reference Include="Microsoft.CSharp" />
76+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
7577
</ItemGroup>
7678

7779
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
7880
<Reference Include="System" />
7981
<Reference Include="Microsoft.CSharp" />
82+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
8083
</ItemGroup>
8184

8285
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
8386
<Reference Include="System" />
8487
<Reference Include="Microsoft.CSharp" />
88+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
8589
</ItemGroup>
8690

8791
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
8892
<Reference Include="System" />
8993
<Reference Include="Microsoft.CSharp" />
90-
</ItemGroup>
94+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
95+
</ItemGroup>
9196

92-
<ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0' ">
93-
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.0.1" />
97+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
98+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
99+
</ItemGroup>
100+
101+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
102+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
94103
</ItemGroup>
104+
105+
<!--<ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0' ">
106+
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.0.1" />
107+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
108+
</ItemGroup>-->
95109
</Project>

src/Microsoft.EntityFrameworkCore.DynamicLinq/Microsoft.EntityFrameworkCore.DynamicLinq.csproj

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description>
44
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle>
5-
<VersionPrefix>1.0.4.7</VersionPrefix>
5+
<VersionPrefix>1.0.4.8</VersionPrefix>
66
<Authors>Stef Heyenrath</Authors>
77
<TargetFrameworks>net451;net46;netstandard1.3;netstandard2.0;uap10.0</TargetFrameworks>
88
<DefineConstants>$(DefineConstants);EFCORE</DefineConstants>
@@ -67,29 +67,43 @@
6767
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
6868
<Reference Include="System" />
6969
<Reference Include="Microsoft.CSharp" />
70+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
7071
</ItemGroup>
7172

7273
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
7374
<Reference Include="System" />
7475
<Reference Include="Microsoft.CSharp" />
76+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
7577
</ItemGroup>
7678

7779
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
7880
<Reference Include="System" />
7981
<Reference Include="Microsoft.CSharp" />
82+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
8083
</ItemGroup>
8184

8285
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
8386
<Reference Include="System" />
8487
<Reference Include="Microsoft.CSharp" />
88+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
8589
</ItemGroup>
8690

8791
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
8892
<Reference Include="System" />
8993
<Reference Include="Microsoft.CSharp" />
94+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
95+
</ItemGroup>
96+
97+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
98+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
99+
</ItemGroup>
100+
101+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
102+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
90103
</ItemGroup>
91104

92105
<ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0' ">
93106
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.0.1" />
107+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
94108
</ItemGroup>
95109
</Project>

0 commit comments

Comments
 (0)