-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMongoSQL.csproj
More file actions
24 lines (21 loc) · 876 Bytes
/
MongoSQL.csproj
File metadata and controls
24 lines (21 loc) · 876 Bytes
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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>Oracle, MariaDB Corporation and MongoSQL Contributors</Authors>
<PackageProjectUrl>https://github.com/GiaNTizmO/MongoSQL</PackageProjectUrl>
<PackageLicenseExpression />
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile></AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<ApplicationIcon>icon(2).ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Folder Include="Converters\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.11.5" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>