-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRadiantConnect.csproj
78 lines (66 loc) · 3.07 KB
/
RadiantConnect.csproj
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-windows;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Radiant Connect Valorant API (UnOfficialt)</Title>
<Version>9.5.6</Version>
<Authors>IrisDev</Authors>
<PackageProjectUrl>https://irisapp.ca/RadiantConnect</PackageProjectUrl>
<RepositoryUrl>https://github.com/RiisDev/RadiantConnect</RepositoryUrl>
<Copyright>https://github.com/RiisDev</Copyright>
<Description>Valorant .Net API, Internal Riot API Usage, With automatic game event handlers & image recognition, XMPP Integration, Riot Login, TCP Integration</Description>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>valorant;.net;api;valorant api; open source;xmpp;riot;riot api</PackageTags>
<LangVersion>preview</LangVersion>
<PackageReleaseNotes>* Fixed ValorantTables
* Added WayJay</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="docs\**" />
<Compile Remove="packages\**" />
<EmbeddedResource Remove="docs\**" />
<EmbeddedResource Remove="packages\**" />
<None Remove="docs\**" />
<None Remove="packages\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<!-- Remove ImageRecognition folder from Content for non-Windows platforms -->
<Content Remove="ImageRecognition\**" Condition="'$(TargetFramework)' != 'net8.0-windows'" />
<!-- Remove ImageRecognition folder from EmbeddedResources for non-Windows platforms -->
<EmbeddedResource Remove="ImageRecognition\**" Condition="'$(TargetFramework)' != 'net8.0-windows'" />
<!-- Remove ImageRecognition folder from any other type if included, such as None -->
<None Remove="ImageRecognition\**" Condition="'$(TargetFramework)' != 'net8.0-windows'" />
<Compile Remove="ImageRecognition\**" Condition="'$(TargetFramework)' != 'net8.0-windows'" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>