-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathPopcornNetStandard.csproj
More file actions
45 lines (39 loc) · 1.81 KB
/
PopcornNetStandard.csproj
File metadata and controls
45 lines (39 loc) · 1.81 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
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Popcorn</RootNamespace>
<PackageId>Skyward.Api.Popcorn</PackageId>
<Authors>Skyward App Company, LLC</Authors>
<Description>Object dynamic filtering and expansion</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Expose an ApiResponse type with a generic Data property.</PackageReleaseNotes>
<Copyright>Copyright 2018 (c) Skyward App Company, LLC. All rights reserved.</Copyright>
<PackageTags>api rest</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/SkywardApps/popcorn</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/SkywardApps/popcorn</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<Version>4.7.0</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>PopcornStandard.xml</DocumentationFile>
<OutputPath>..\Build\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Build\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="System.Collections.NonGeneric" Version="4.3.0" />
<PackageReference Include="System.Reflection" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>