Skip to content

Commit

Permalink
Merge pull request #13 from Doprez/3-0
Browse files Browse the repository at this point in the history
3.0
  • Loading branch information
Doprez authored Dec 15, 2023
2 parents 10cb13d + ff450c8 commit 62a829d
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 118 deletions.
21 changes: 9 additions & 12 deletions Doprez.Stride/Doprez.Stride.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<Title>Doprez.Stride</Title>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<NeutralLanguage>en-CA</NeutralLanguage>
<RepositoryUrl>https://github.com/Doprez/Doprez.Stride</RepositoryUrl>
<PackageProjectUrl>https://github.com/Doprez/Doprez.Stride</PackageProjectUrl>
<Version>2.1.0</Version>
<Version>3.0.0.0</Version>
<Description>A package of helper classes for use in the Stride Game Engine</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Stride3d;Game Engine;Stride;</PackageTags>
Expand All @@ -24,9 +24,6 @@
<StrideBuildTags>*</StrideBuildTags>
<StridePackAssets>true</StridePackAssets>
</PropertyGroup>
<ItemGroup>
<None Remove="jenkinsfile" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
Expand All @@ -38,13 +35,13 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Stride.Engine" Version="4.1.0.*" />
<PackageReference Include="Stride.Video" Version="4.1.0.*" />
<PackageReference Include="Stride.Physics" Version="4.1.0.*" />
<PackageReference Include="Stride.Navigation" Version="4.1.0.*" />
<PackageReference Include="Stride.Particles" Version="4.1.0.*" />
<PackageReference Include="Stride.UI" Version="4.1.0.*" />
<PackageReference Include="Stride.Core" Version="4.1.0.*" />
<PackageReference Include="Stride.Engine" Version="4.2.0.2043" />
<PackageReference Include="Stride.Video" Version="4.2.0.2043" />
<PackageReference Include="Stride.Physics" Version="4.2.0.2043" />
<PackageReference Include="Stride.Navigation" Version="4.2.0.2043" />
<PackageReference Include="Stride.Particles" Version="4.2.0.2043" />
<PackageReference Include="Stride.UI" Version="4.2.0.2043" />
<PackageReference Include="Stride.Core" Version="4.2.0.2043" />
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\" />
Expand Down
5 changes: 0 additions & 5 deletions Doprez.Stride/DoprezMath/MathHelper.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
using Stride.Core.Mathematics;
using Stride.Engine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Doprez.Stride.DoprezMath;
public static class MathHelper
Expand Down
7 changes: 7 additions & 0 deletions Doprez.Stride/Extensions/StrideMathExtensions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using Stride.Core.Mathematics;

namespace Doprez.Stride.Extensions;
public static class StrideMathExtensions
{

}
14 changes: 0 additions & 14 deletions Doprez.Stride/Interfaces/IEquippable.cs

This file was deleted.

17 changes: 0 additions & 17 deletions Doprez.Stride/Interfaces/IInteractable.cs

This file was deleted.

14 changes: 0 additions & 14 deletions Doprez.Stride/Interfaces/IUIControllable.cs

This file was deleted.

13 changes: 13 additions & 0 deletions Doprez.Stride/Module.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Stride.Core;
using Stride.Core.Reflection;
using System.Reflection;

namespace Doprez.Stride;
internal class Module
{
[ModuleInitializer]
public static void Initialize()
{
AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets);
}
}
56 changes: 0 additions & 56 deletions Doprez.Stride/Utilities/JsonHelper.cs

This file was deleted.

0 comments on commit 62a829d

Please sign in to comment.