-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPostman.NET.Collections.csproj
34 lines (30 loc) · 1.2 KB
/
Postman.NET.Collections.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>JeniusApps.Postman.NET</PackageId>
<Version>0.2.4.0-preview</Version>
<Authors>Daniel Paulino</Authors>
<Company>JeniusApps</Company>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Product>Postman.NET</Product>
<Description>An unofficial .NET implementation of the Postman collection schema.</Description>
<Copyright>© Jenius Apps</Copyright>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/jenius-apps/Postman.NET</RepositoryUrl>
<PackageTags>postman,schema,dotnet,dotnet-standard</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>