-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
106 changed files
with
3,584 additions
and
3,477 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,3 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=1b89beda_002D4214_002D4128_002Db463_002D5c556bb68962/@EntryIndexedValue"><Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Public" Description="public method"><ElementKinds><Kind Name="METHOD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></Policy></s:String> | ||
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=31c49da0_002D9fe2_002D42ee_002Db6f8_002D81a44971aaf8/@EntryIndexedValue"><Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private" Description="private method"><ElementKinds><Kind Name="METHOD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></Policy></s:String></wpf:ResourceDictionary> |
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,27 +1,39 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp3.1;net462;net5.0</TargetFrameworks> | ||
<Version>3.1.1</Version> | ||
<Description>Minecraft Launcher Library for .NET Core and .NET Framework | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp3.1;net462;net5.0</TargetFrameworks> | ||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<Version>3.2.0</Version> | ||
<Description>Minecraft Launcher Library for .NET Core and .NET Framework | ||
Support All versions, forge, optifine | ||
see github to learn how to use</Description> | ||
<Copyright>Copyright (c) 2020 AlphaBs</Copyright> | ||
<PackageProjectUrl>https://github.com/AlphaBs/CmlLib.Core</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/AlphaBs/CmlLib.Core</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageTags>Minecraft Launcher forge optifine .NET Core Crossplatform C#</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<Authors>AlphaBs</Authors> | ||
<PackageReleaseNotes /> | ||
<PackageId>CmlLib.Core</PackageId> | ||
</PropertyGroup> | ||
see github to learn how to use | ||
</Description> | ||
<Copyright>Copyright (c) 2020 AlphaBs</Copyright> | ||
<PackageProjectUrl>https://github.com/AlphaBs/CmlLib.Core</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/AlphaBs/CmlLib.Core</RepositoryUrl> | ||
<iconUrl>icon.png</iconUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageTags>Minecraft Launcher forge optifine mojang Crossplatform C#</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<Authors>AlphaBs</Authors> | ||
<PackageReleaseNotes/> | ||
<PackageId>CmlLib.Core</PackageId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="LZMA-SDK" Version="19.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
<PackageReference Include="SharpZipLib" Version="1.2.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Fody" Version="6.5.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="LZMA-SDK" Version="19.0.0"/> | ||
<PackageReference Include="MethodTimer.Fody" Version="3.2.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3"/> | ||
<PackageReference Include="SharpZipLib" Version="1.2.0"/> | ||
<None Include="../icon.png" Pack="true" Visible="false" 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
Oops, something went wrong.