forked from npgsql/EntityFramework6.Npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.targets
24 lines (21 loc) · 1006 Bytes
/
Directory.Build.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<ItemGroup Condition="'$(TargetFramework)' != 'net45'">
<!-- Any update of these version must be accompanied by the appropriate
change in EF6.PG/content -->
<PackageReference Update="Npgsql" Version="4.1.3" />
<PackageReference Update="Npgsql.LegacyPostgis" Version="4.1.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<!-- Any update of these version must be accompanied by the appropriate
change in EF6.PG/content -->
<PackageReference Update="Npgsql" Version="4.0.10" />
<PackageReference Update="Npgsql.LegacyPostgis" Version="4.0.10" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="EntityFramework" Version="6.4.0" />
<PackageReference Update="NUnit" Version="3.12.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Update="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Update="NLog" Version="4.6.7" />
</ItemGroup>
</Project>