-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEOS-Web-API.csproj
More file actions
29 lines (25 loc) · 1.1 KB
/
Copy pathEOS-Web-API.csproj
File metadata and controls
29 lines (25 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>EpicGames.Web</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>EOS-Web-API</Title>
<Company>Entex Interactive, LLC</Company>
<Authors>$(Company)</Authors>
<Copyright>Copyright $(Company). All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/EntexInteractive/EOS-Web-API</PackageProjectUrl>
<Description>A CSharp wrapper for the EOS Web API.</Description>
<RepositoryUrl>https://github.com/EntexInteractive/EOS-Web-API.git</RepositoryUrl>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Configurations>Debug;Release;Analyze</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\EOS-Web-API.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>