-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* minor improvements * update nuget packages
- Loading branch information
Showing
17 changed files
with
437 additions
and
601 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using System.Windows; | ||
using YT.IIGen.Attributes; | ||
using Tum4ik.StinimGen.Attributes; | ||
|
||
namespace Tum4ik.JustClipboardManager.Ioc.Wrappers; | ||
|
||
[IIFor(typeof(Clipboard), "ClipboardWrapper")] | ||
[IIFor(typeof(Clipboard), WrapperClassName = "ClipboardWrapper")] | ||
internal partial interface IClipboard | ||
{ | ||
} |
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,8 +1,8 @@ | ||
using YT.IIGen.Attributes; | ||
using Tum4ik.StinimGen.Attributes; | ||
|
||
namespace Tum4ik.JustClipboardManager.Ioc.Wrappers; | ||
|
||
[IIFor(typeof(Environment), "EnvironmentWrapper")] | ||
[IIFor(typeof(Environment), WrapperClassName = "EnvironmentWrapper")] | ||
internal partial interface IEnvironment | ||
{ | ||
} |
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,9 +1,9 @@ | ||
using System.IO; | ||
using YT.IIGen.Attributes; | ||
using System.IO; | ||
using Tum4ik.StinimGen.Attributes; | ||
|
||
namespace Tum4ik.JustClipboardManager.Ioc.Wrappers; | ||
|
||
[IIFor(typeof(File), "FileWrapper")] | ||
[IIFor(typeof(File), WrapperClassName = "FileWrapper")] | ||
internal partial interface IFile | ||
{ | ||
} |
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,9 +1,9 @@ | ||
using System.IO; | ||
using YT.IIGen.Attributes; | ||
using Tum4ik.StinimGen.Attributes; | ||
|
||
namespace Tum4ik.JustClipboardManager.Ioc.Wrappers; | ||
|
||
[IIFor(typeof(Path), "PathWrapper")] | ||
[IIFor(typeof(Path), WrapperClassName = "PathWrapper")] | ||
internal partial interface IPath | ||
{ | ||
} |
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,9 +1,9 @@ | ||
using System.Diagnostics; | ||
using YT.IIGen.Attributes; | ||
using Tum4ik.StinimGen.Attributes; | ||
|
||
namespace Tum4ik.JustClipboardManager.Ioc.Wrappers; | ||
|
||
[IIFor(typeof(Process), "ProcessWrapper")] | ||
[IIFor(typeof(Process), WrapperClassName = "ProcessWrapper")] | ||
internal partial interface IProcess | ||
{ | ||
} |
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
Oops, something went wrong.