-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNetoDotNET.csproj
More file actions
33 lines (29 loc) · 1.24 KB
/
Copy pathNetoDotNET.csproj
File metadata and controls
33 lines (29 loc) · 1.24 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
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>NetoDotNET</Title>
<PackageId>NetoDotNET.Core</PackageId>
<Description>A .NET Client wrapper for the Neto API.</Description>
<Copyright>MIT</Copyright>
<RepositoryUrl>https://github.com/SeanoNET/NetoDotNET</RepositoryUrl>
<PackageTags>neto; api; ecommerce;</PackageTags>
<Authors>Sean O.</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>7.3</LangVersion>
<PackageProjectUrl>https://github.com/SeanoNET/NetoDotNET</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>0.2.6.0</AssemblyVersion>
<FileVersion>0.2.6.0</FileVersion>
<Version>0.2.6</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\..\..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json\9.0.1\lib\netstandard1.0\Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
</Project>