-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update deps * updates * update workflows * update deps * start renaming packages and ns * build for linux again * rename assemblies * rename project files * remove odd warning suppression for now * use new ns syntax * rename test namespaces * rename clients windows ns * rename clients and steam ns * rename other ns * remove steam exception from infrastructure * move steam code new package * steam tests for windows for now * remove leftovers * no tests * update deps and enable tests partially * enable more tests * disable aet tests * remove some tag * update libs and ns * fix build * try aet enable tests * fix build * really fix build * verbose output * change csproj * maybe this time... * update tests * update test and extract windows intrinsics from shared wrapper code * fix race * update deps * Separate Windows registry * fix tests windows * do not support ubuntu in this version and update some tests and contracts * pack icon and license
- Loading branch information
Showing
306 changed files
with
3,782 additions
and
3,910 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,15 +18,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
- name: Create packages | ||
run: dotnet pack --configuration Release --output ./packages | ||
- name: Upload a Build Artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: NuGet packages | ||
path: packages/*.* | ||
|
@@ -39,21 +39,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
- uses: actions/download-artifact@v3 | ||
uses: actions/setup-dotnet@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: NuGet packages | ||
path: packages | ||
- name: Push packages | ||
run: dotnet nuget push "packages/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json | ||
- uses: dotnet/[email protected].0 | ||
- uses: dotnet/[email protected].2 | ||
id: nbgv | ||
- name: Create GitHub release | ||
uses: softprops/action-gh-release@v1 | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: v${{ steps.nbgv.outputs.SemVer2 }} | ||
tag_name: v${{ steps.nbgv.outputs.SemVer2 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,45 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Product>PetroglyphTools</Product> | ||
<Copyright>Copyright © Anakin Sklavenwalker 2019-2023</Copyright> | ||
<Authors>Anakin Sklavenwalker</Authors> | ||
<Company>Republic at War Modding Team</Company> | ||
<PackageTags>petroglyph, alamo, glyphx, foc, eaw</PackageTags> | ||
<PackageProjectUrl>https://github.com/AlamoEngine-Tools</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly Condition="'$(Configuration)' == 'Release'">False</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)AlamoEngineTools.snk</AssemblyOriginatorKeyFile> | ||
<LangVersion>10.0</LangVersion> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<Version>3.6.132</Version> | ||
</PackageReference> | ||
<PackageReference Include="SauceControl.InheritDoc" Version="1.3.0" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath> | ||
<ProduceReferenceAssembly>true</ProduceReferenceAssembly> | ||
<EnableDynamicPlatformResolution>true</EnableDynamicPlatformResolution> | ||
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory> | ||
<PackageOutputPath>$(RepoRootPath)bin\Packages\$(Configuration)\</PackageOutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Authors>Alamo Engine Tools and Contributors</Authors> | ||
<Copyright>Copyright © 2024 Alamo Engine Tools and contributors. All rights reserved.</Copyright> | ||
<Company>Alamo Engine Tools</Company> | ||
<PackageTags>petroglyph, alamo, glyphx, foc, eaw</PackageTags> | ||
<PackageProjectUrl>https://github.com/AlamoEngine-Tools/PetroglyphGameInfrastructure</PackageProjectUrl> | ||
<LicenseFile>$(MSBuildThisFileDirectory)LICENSE</LicenseFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<RepositoryUrl>https://github.com/AlamoEngine-Tools/PetroglyphGameInfrastructure</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageIcon>aet.png</PackageIcon> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<Version>3.6.133</Version> | ||
</PackageReference> | ||
<PackageReference Include="SauceControl.InheritDoc" Version="2.0.1" PrivateAssets="all" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(IsPackable)' == 'true'"> | ||
<None Include="$(LicenseFile)" Pack="true" PackagePath=""/> | ||
<None Include="$(MSBuildThisFileDirectory)aet.png" Pack="true" PackagePath=""/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.