forked from babelshift/SteamWebAPI2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSteamWebAPI2.csproj
More file actions
35 lines (32 loc) 路 1.81 KB
/
SteamWebAPI2.csproj
File metadata and controls
35 lines (32 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.</Description>
<VersionPrefix>4.4.1</VersionPrefix>
<Authors>Justin Skiles</Authors>
<AssemblyName>SteamWebAPI2</AssemblyName>
<PackageId>SteamWebAPI2</PackageId>
<PackageProjectUrl>https://github.com/babelshift/SteamWebAPI2</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<!-- https://github.com/nuget/home/issues/3891 -->
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="automapper" Version="12.0.0" Condition="'$(TargetFramework)' == 'netstandard2.1'" />
<PackageReference Include="automapper" Version="10.1.1" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="newtonsoft.json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Steam.Models\Steam.Models.csproj" PrivateAssets="all" />
</ItemGroup>
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
<ItemGroup>
<!-- https://github.com/nuget/home/issues/3891 -->
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>