Skip to content

Commit

Permalink
Added info for publishing this repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SlejmUr committed Jan 16, 2023
1 parent 017ce7a commit 7ee9e0b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# UbiServices
Gathering Information from public-ubiservices.ubi, store.ubi, etc.

### Version

Current version description is:

Year.Month.Day.Revision
18 changes: 15 additions & 3 deletions UbiServices/UbiServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,33 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SignAssembly>False</SignAssembly>
<SignAssembly>True</SignAssembly>
<Company>UplayDB</Company>
<Authors>UplayDB,SlejmUr</Authors>
<Description>C# Lib to Communicate Uplay API</Description>
<Copyright>Copyright © UplayDB Team 2022</Copyright>
<PackageProjectUrl>https://github.com/UplayDB/UplayKit</PackageProjectUrl>
<RepositoryUrl>https://github.com/UplayDB/UplayKit</RepositoryUrl>
<PackageProjectUrl>https://github.com/UplayDB/UbiServices</PackageProjectUrl>
<RepositoryUrl>https://github.com/UplayDB/UbiServices</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>uplay,ubisoft,api,ubiservice</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>$(AssemblyName)</Title>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyOriginatorKeyFile>../../Sign.snk</AssemblyOriginatorKeyFile>
<PackageReleaseNotes>Check changelog.txt</PackageReleaseNotes>
<DebugType>none</DebugType>
<Version>23.1.16.0</Version>
</PropertyGroup>


<ItemGroup>
<EmbeddedResource Include="..\changelog.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
Expand Down
2 changes: 1 addition & 1 deletion UbiServices/V1/Spaces/SpaceAllItems.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public partial class Spaces

var client = new RestClient(URL);
var request = new RestRequest();
Console.WriteLine(LocaleCode.ToString().Replace("_", "-"));

request.AddHeader("Ubi-AppId", V3.AppID);
request.AddHeader("Authorization", $"Ubi_v1 t={AuthTicket}");
request.AddHeader("Ubi-LocaleCode", LocaleCode.ToString().Replace("_", "-"));
Expand Down
5 changes: 4 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@

--------------------------------------------------------------
23.1.16.0 2023 Jan 16-
--------------------------------------------------------------
* Released to Public as Testing version

0 comments on commit 7ee9e0b

Please sign in to comment.