This repository was archived by the owner on Jun 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPushBulletNet.csproj
37 lines (33 loc) · 1.54 KB
/
PushBulletNet.csproj
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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ApplicationIcon>PBNIco.ico</ApplicationIcon>
<OutputType>Library</OutputType>
<StartupObject></StartupObject>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.2.8</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>.NET wrapper for PushBullet.com</Description>
<Copyright>MIT</Copyright>
<PackageLicenseUrl>https://github.com/Adomix/PushBulletNet/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Adomix/PushBulletNet</PackageProjectUrl>
<PackageIconUrl>https://i.imgur.com/Vcllmax.png</PackageIconUrl>
<PackageTags>.NET Wrapper C# Push PushBullet PB</PackageTags>
<AssemblyVersion>0.0.2.8</AssemblyVersion>
<FileVersion>0.0.2.8</FileVersion>
<RepositoryUrl>https://github.com/Adomix/PushBulletNet</RepositoryUrl>
<RepositoryType>Wrapper</RepositoryType>
<Authors>Mango</Authors>
<PackageReleaseNotes>0.2.8: Cleaned up some code, added CreateChatAsync and CreateSubscriptionAsync</PackageReleaseNotes>
<Company>N/A</Company>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<Compile Remove="WrapperTest\WrapperTest\obj\**" />
<EmbeddedResource Remove="WrapperTest\WrapperTest\obj\**" />
<None Remove="WrapperTest\WrapperTest\obj\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
</Project>