Skip to content

Commit 463ba90

Browse files
authored
Merge pull request #125 from sunnamed434/dev
Bump new version 0.15.1-alpha.28
2 parents 494bfed + dfbfd93 commit 463ba90

34 files changed

Lines changed: 326 additions & 259 deletions

CHANGELOG.md

Lines changed: 233 additions & 165 deletions
Large diffs are not rendered by default.

props/SharedProjectProps.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<PackageLicenseExpression>MIT</PackageLicenseExpression>
77
<PackageProjectUrl>https://github.com/sunnamed434/BitMono</PackageProjectUrl>
88
<PackageOwners>sunnamed434</PackageOwners>
9-
<PackageVersion>0.15.0-alpha.27</PackageVersion>
9+
<PackageVersion>0.15.1-alpha.28</PackageVersion>
1010
<RepositoryUrl>https://github.com/sunnamed434/BitMono</RepositoryUrl>
1111
<RepositoryType>git</RepositoryType>
1212
<Authors>sunnamed434</Authors>
13-
<Version>0.15.0-alpha.27</Version>
14-
<InformationalVersion>0.15.0-alpha.27</InformationalVersion>
13+
<Version>0.15.1-alpha.28</Version>
14+
<InformationalVersion>0.15.1-alpha.28</InformationalVersion>
1515
<Company>BitMono</Company>
1616
<Copyright>sunnamed434</Copyright>
1717
<LangVersion>10</LangVersion>

src/BitMono.API/BitMono.API.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,4 @@
2424
<ProjectReference Include="..\BitMono.Shared\BitMono.Shared.csproj" />
2525
</ItemGroup>
2626

27-
<ItemGroup>
28-
<Folder Include="Services\" />
29-
</ItemGroup>
30-
3127
</Project>

src/BitMono.API/GlobalUsings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
global using System.Collections.Generic;
88
global using System.Diagnostics.CodeAnalysis;
99
global using System.Threading.Tasks;
10+
global using BitMono.API.Protections;
1011
global using IModule = Autofac.Core.IModule;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BitMono.API;
1+
namespace BitMono.API.Protections;
22

33
public interface IPacker : IProtection
44
{

src/BitMono.API/Pipeline/IPhaseProtection.cs renamed to src/BitMono.API/Protections/IPhaseProtection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BitMono.API.Pipeline;
1+
namespace BitMono.API.Protections;
22

33
public interface IPhaseProtection : IProtection
44
{

src/BitMono.API/Pipeline/IPipelineProtection.cs renamed to src/BitMono.API/Protections/IPipelineProtection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BitMono.API.Pipeline;
1+
namespace BitMono.API.Protections;
22

33
public interface IPipelineProtection : IProtection
44
{

src/BitMono.API/IProtection.cs renamed to src/BitMono.API/Protections/IProtection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BitMono.API;
1+
namespace BitMono.API.Protections;
22

33
public interface IProtection
44
{

src/BitMono.API/Contexts/ProtectionParameters.cs renamed to src/BitMono.API/Protections/ProtectionParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace BitMono.API.Contexts;
1+
namespace BitMono.API.Protections;
22

33
[SuppressMessage("ReSharper", "UnusedType.Global")]
44
public class ProtectionParameters

src/BitMono.CLI/GlobalUsings.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
global using System.Threading.Tasks;
1212
global using BitMono.Host.Extensions;
1313
global using BitMono.Obfuscation.Files;
14+
global using BitMono.Obfuscation.Starter;
1415
global using BitMono.Shared.Models;
1516
global using BitMono.Utilities.Paths;
1617
global using CommandLine;
18+
global using Microsoft.Extensions.DependencyInjection;
1719
global using Microsoft.Extensions.Options;
1820
global using Pocket.Extensions;
1921
global using Serilog;

0 commit comments

Comments
 (0)