Initial commit

This commit is contained in:
Gregory Lirent 2025-07-13 15:28:39 +03:00
commit 1e8a0d8756
2 changed files with 40 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
/.*/
/bin/
/obj/
/Properties/
/appsettings.Development.json
/webmr-api.csproj.user

34
winipc-ua.csproj Normal file
View File

@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<UseAppHost>true</UseAppHost>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnableCETCompat>true</EnableCETCompat>
<RootNamespace>WinIPC</RootNamespace>
<AssemblyName>UserAgent</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>0.1.0</Version>
<Company>OpenSource</Company>
<Product>User Agent for Process Monitoring Service</Product>
<Description>Deep identify processes.</Description>
<Copyright>Copyright © 2024-2025 Gregory Lirent</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
</ItemGroup>
</Project>