-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoogleTasksNET.csproj
More file actions
28 lines (24 loc) · 964 Bytes
/
GoogleTasksNET.csproj
File metadata and controls
28 lines (24 loc) · 964 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
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Colin Kiama</Authors>
<Company />
<PackageId>GoogleTasks.NET.ColinKiama</PackageId>
<Description>A .Net Standard Google Tasks API</Description>
<PackageProjectUrl>https://github.com/colinkiama/GoogleTasks.Net</PackageProjectUrl>
<PackageTags>google tasks .net standard dotnet dot net api</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Version>1.0.2</Version>
<PackageReleaseNotes>Models now implement INotifyPropertyChanged</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>