Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Update namespace and fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Aug 5, 2021
1 parent 4c3b571 commit 2dc5897
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Madness.sln → JustArchiNET.Madness.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.6.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Madness", "Madness\Madness.csproj", "{38C29DDE-42C6-48A5-B416-37E1EA82E388}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JustArchiNET.Madness", "JustArchiNET.Madness\JustArchiNET.Madness.csproj", "{38C29DDE-42C6-48A5-B416-37E1EA82E388}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using System;
using System.Threading.Tasks;

namespace Madness {
namespace JustArchiNET.Madness {
internal sealed class AsyncDisposableWrapper : IAsyncDisposable {
private readonly IDisposable Disposable;

Expand Down
2 changes: 1 addition & 1 deletion Madness/File.cs → JustArchiNET.Madness/File.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using System.Threading.Tasks;
using JetBrains.Annotations;

namespace Madness {
namespace JustArchiNET.Madness {
[PublicAPI]
public static class File {
public static Task AppendAllTextAsync(string path, string contents) {
Expand Down
2 changes: 1 addition & 1 deletion Madness/HashCode.cs → JustArchiNET.Madness/HashCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

using JetBrains.Annotations;

namespace Madness {
namespace JustArchiNET.Madness {
[PublicAPI]
public static class HashCode {
public static int Combine<T1, T2, T3>(T1 value1, T2 value2, T3 value3) => (value1, value2, value3).GetHashCode();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>JustArchiNET.Madness</PackageId>
<PackageIcon>Madness.png</PackageIcon>
<PackageReleaseNotes>https://github.com/JustArchiNET/Madness/releases</PackageReleaseNotes>
<Title>$(PackageId)</Title>
</PropertyGroup>

Expand All @@ -12,4 +13,8 @@
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
</ItemGroup>

<ItemGroup>
<None Include="..\resources\Madness.png" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Madness/Path.cs → JustArchiNET.Madness/Path.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
using System.Text;
using JetBrains.Annotations;

namespace Madness {
namespace JustArchiNET.Madness {
[PublicAPI]
public static class Path {
public static string GetRelativePath(string relativeTo, string path) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

namespace Madness {
namespace JustArchiNET.Madness {
internal static class PathInternalNetCore {
private const string ExtendedDevicePathPrefix = @"\\?\";
private const string UncExtendedPathPrefix = @"\\?\UNC\";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
using JetBrains.Annotations;
using Microsoft.AspNetCore.Hosting;

namespace Madness {
namespace JustArchiNET.Madness {
[PublicAPI]
public static class StaticHelpers {
public static bool IsRunningOnMono => Type.GetType("Mono.Runtime") != null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
using System;
using JetBrains.Annotations;

namespace Madness {
namespace JustArchiNET.Madness {
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Constructor | AttributeTargets.Enum | AttributeTargets.Event | AttributeTargets.Field | AttributeTargets.Method | AttributeTargets.Module | AttributeTargets.Property | AttributeTargets.Struct, AllowMultiple = true, Inherited = false)]
[PublicAPI]
public sealed class SupportedOSPlatformAttribute : Attribute {
Expand Down
File renamed without changes

0 comments on commit 2dc5897

Please sign in to comment.