-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added MLEM.KNI and friends, which are fully compatible with KNI
- Loading branch information
Showing
29 changed files
with
593 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ApplicationIcon>Icon.ico</ApplicationIcon> | ||
<AssemblyName>MLEM Desktop Demos</AssemblyName> | ||
<RootNamespace>Demos.DesktopGL</RootNamespace> | ||
<DefineConstants>$(DefineConstants);KNI</DefineConstants> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Demos\Demos.KNI.csproj" /> | ||
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.KNI.csproj" /> | ||
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.KNI.csproj" /> | ||
<ProjectReference Include="..\MLEM\MLEM.KNI.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" /> | ||
<PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.13.9001" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<KniContentReference Include="..\Demos\Content\Content.mgcb" /> | ||
<Content Include="..\Demos\Content\*\**" /> | ||
<EmbeddedResource Include="Icon.ico" /> | ||
<EmbeddedResource Include="Icon.bmp" /> | ||
</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 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
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<RootNamespace>Demos</RootNamespace> | ||
<DefineConstants>$(DefineConstants);KNI</DefineConstants> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MLEM.Startup\MLEM.Startup.KNI.csproj" /> | ||
<ProjectReference Include="..\MLEM.Ui\MLEM.Ui.KNI.csproj" /> | ||
<ProjectReference Include="..\MLEM\MLEM.KNI.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</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 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
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net452;netstandard2.0;net8.0</TargetFrameworks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<ProduceReferenceAssembly>true</ProduceReferenceAssembly> | ||
<IsAotCompatible Condition="'$(TargetFramework)'=='net8.0'">true</IsAotCompatible> | ||
<RootNamespace>MLEM.Data</RootNamespace> | ||
<DefineConstants>$(DefineConstants);KNI</DefineConstants> | ||
<NoWarn>NU1701</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<Authors>Ellpeck</Authors> | ||
<Description>Simple loading and processing of textures and other data for KNI, including the ability to load non-XNB content files easily</Description> | ||
<PackageReleaseNotes>See the full changelog at https://mlem.ellpeck.de/CHANGELOG.html</PackageReleaseNotes> | ||
<PackageTags>kni ellpeck mlem utility extensions data serialize</PackageTags> | ||
<PackageProjectUrl>https://mlem.ellpeck.de/</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/Ellpeck/MLEM</RepositoryUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>Logo.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MLEM\MLEM.KNI.csproj" /> | ||
|
||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="nkast.Xna.Framework" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="../Media/Logo.png" Pack="true" PackagePath="" /> | ||
<None Include="../README.md" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.