-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAptacode.CSharp.Common.Http.csproj
More file actions
64 lines (55 loc) · 2.51 KB
/
Copy pathAptacode.CSharp.Common.Http.csproj
File metadata and controls
64 lines (55 loc) · 2.51 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
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net4.6.1;netcoreapp3.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Aptacode</Authors>
<Company>Aptacode</Company>
<Description>A Collection of helpful C# Utilities used in Aptacode's OpenSource libraries</Description>
<PackageProjectUrl>https://github.com/Timmoth/Aptacode.CSharp.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/Timmoth/Aptacode.CSharp.Common</RepositoryUrl>
<Copyright>MIT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.0.30</Version>
<AssemblyVersion>1.0.0.30</AssemblyVersion>
<LangVersion>8.0</LangVersion>
<PackageIconUrl />
<FileVersion>1.0.0.30</FileVersion>
<PackageIcon>logo.png</PackageIcon>
<ApplicationIcon>logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.1|AnyCPU'">
<OutputPath>..\bin\debug</OutputPath>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.1|AnyCPU'">
<OutputPath>..\bin\release</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aptacode.MimeTypes" Version="1.0.1.2" />
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aptacode.CSharp.Common.Persistence\Aptacode.CSharp.Common.Persistence.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\Images\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer">
<Version>5.0.9</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNetCore.Authentication.JwtBearer">
<HintPath>..\..\..\nuget_packages\microsoft.aspnetcore.authentication.jwtbearer\3.1.5\lib\netcoreapp3.1\Microsoft.AspNetCore.Authentication.JwtBearer.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="CopyPackage" AfterTargets="Pack">
<Copy SourceFiles="$(OutputPath)$(PackageId).$(PackageVersion).nupkg" DestinationFolder="../bin/nuget" />
</Target>
</Project>