-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSaasu.API.Client.csproj
More file actions
60 lines (58 loc) · 2.5 KB
/
Saasu.API.Client.csproj
File metadata and controls
60 lines (58 loc) · 2.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<Configurations>Debug;Release;CI</Configurations>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageId>Saasu.API.Dotnet.Sdk</PackageId>
<Authors>Saasu</Authors>
<Title>API SDK for the Saasu API</Title>
<Description>A client SDK for working with the Saasu API.</Description>
<PackageProjectUrl>https://github.com/saasu/api-sdk-dotnet</PackageProjectUrl>
<PackageTags>Saasu API SDK</PackageTags>
<Version>1.2</Version>
<Copyright>Saasu Pty. Ltd.</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461'">
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="OctoPack" Version="3.6.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Saasu.API.Core\Saasu.API.Core.csproj" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Compile Update="Config.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Config.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Config.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Config.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="readme.txt">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference')->WithMetadataValue('PrivateAssets', 'All'))" />
</ItemGroup>
</Target>
</Project>