5 changed files with 40 additions and 0 deletions
@ -0,0 +1,4 @@
|
||||
<Solution> |
||||
<Project Path="BitPlus.IO.Directory.Watcher/BitPlus.IO.Directory.Watcher.csproj" /> |
||||
<Project Path="Sampl/Sample.csproj" /> |
||||
</Solution> |
||||
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>net10.0</TargetFramework> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
<Nullable>enable</Nullable> |
||||
</PropertyGroup> |
||||
|
||||
</Project> |
||||
@ -0,0 +1,6 @@
|
||||
namespace BitPlus.IO.Directory.Watcher; |
||||
|
||||
public class DirectoryWatcher |
||||
{ |
||||
|
||||
} |
||||
@ -0,0 +1,7 @@
|
||||
internal class Program |
||||
{ |
||||
private static void Main(string[] args) |
||||
{ |
||||
Console.WriteLine("Hello, World!"); |
||||
} |
||||
} |
||||
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<OutputType>Exe</OutputType> |
||||
<TargetFramework>net10.0</TargetFramework> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
<Nullable>enable</Nullable> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<ProjectReference Include="..\BitPlus.IO.Directory.Watcher\BitPlus.IO.Directory.Watcher.csproj" /> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
||||
Loading…
Reference in new issue