-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRadiantConnect.csproj
69 lines (59 loc) · 2.65 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Radiant Connect Valorant API (UnOfficialt)</Title>
<Version>9.2.0</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>Some backwards compatibility will be broken with some of these changes, I apologize.
* ReWrote how initiator is handled, as well as how you're able to use initiator with your own credentials, you may now send, SSID, or RSOData type to use any network instance.
* Adjusted XMPP Systems to handle new RSO implementations.
* Minor code based edits
+Added Tejo to table
+Added Outlaw gun to tabel (somehow forgot?)</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" />
<PackageReference Include="System.Drawing.Common" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>