|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks> |
5 |
| - <AssemblyName>MongoFramework</AssemblyName> |
6 |
| - <Title>MongoFramework</Title> |
7 |
| - <Description>An "Entity Framework"-like interface for the MongoDB C# Driver</Description> |
8 |
| - <PackageTags>$(PackageBaseTags)</PackageTags> |
9 |
| - <Authors>James Turner</Authors> |
10 |
| - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> |
| 5 | + <AssemblyName>MongoFramework</AssemblyName> |
| 6 | + <Title>MongoFramework</Title> |
| 7 | + <Description>An "Entity Framework"-like interface for the MongoDB C# Driver</Description> |
| 8 | + <PackageTags>$(PackageBaseTags)</PackageTags> |
| 9 | + <Authors>James Turner</Authors> |
| 10 | + </PropertyGroup> |
11 | 11 |
|
12 |
| - <ItemGroup> |
13 |
| - <PackageReference Include="MongoDB.Driver" Version="2.14.1" /> |
14 |
| - </ItemGroup> |
15 |
| - |
16 |
| - <Choose> |
17 |
| - <When Condition=" '$(TargetFramework)' == 'netstandard2.0' "> |
18 |
| - <ItemGroup> |
19 |
| - <PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" /> |
20 |
| - <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" /> |
21 |
| - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> |
22 |
| - <PackageReference Include="System.Linq.Async" Version="4.1.1" /> |
23 |
| - </ItemGroup> |
24 |
| - </When> |
25 |
| - <Otherwise> |
26 |
| - <ItemGroup> |
27 |
| - <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> |
28 |
| - <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" /> |
29 |
| - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> |
30 |
| - <PackageReference Include="System.Linq.Async" Version="5.1.0" /> |
31 |
| - </ItemGroup> |
32 |
| - </Otherwise> |
33 |
| - </Choose> |
| 12 | + <ItemGroup> |
| 13 | + <PackageReference Include="MongoDB.Driver" Version="2.14.1" /> |
| 14 | + <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> |
| 15 | + <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" /> |
| 16 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" /> |
| 17 | + <PackageReference Include="System.Linq.Async" Version="5.1.0" /> |
| 18 | + </ItemGroup> |
34 | 19 |
|
35 | 20 | </Project>
|
0 commit comments