-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathScryfallApi.Client.csproj
More file actions
39 lines (32 loc) · 1.35 KB
/
Copy pathScryfallApi.Client.csproj
File metadata and controls
39 lines (32 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<ImplicitUsings>true</ImplicitUsings>
<PackageId>ScryfallAPI.Client</PackageId>
<Version>3.0</Version>
<Authors>Gonkers</Authors>
<Company />
<Description>.NET client library for accessing the scryfall.com API</Description>
<PackageTags>scryfall scryfall-api</PackageTags>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<PackageProjectUrl>https://github.com/Gonkers/Scryfall-API-Client</PackageProjectUrl>
<RepositoryUrl>https://github.com/Gonkers/Scryfall-API-Client</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!--<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">-->
<!--<PropertyGroup>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>-->
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="System.Text.Json" Version="7.0.3" />
</ItemGroup>
</Project>