-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodeMash.Data.csproj
More file actions
31 lines (25 loc) · 1.27 KB
/
CodeMash.Data.csproj
File metadata and controls
31 lines (25 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>CodeMash.Models</RootNamespace>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="MongoDB.Driver" Version="2.11.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="MongoDB.Driver" Version="2.11.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<Reference Include="ServiceContracts.Api, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\lib\netstandard2.0\ServiceContracts.Api.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<Reference Include="ServiceContracts.Api, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\..\lib\net6.0\ServiceContracts.Api.dll</HintPath>
</Reference>
</ItemGroup>
</Project>