Initial commit
This commit is contained in:
commit
1e8a0d8756
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/.*/
|
||||
/bin/
|
||||
/obj/
|
||||
/Properties/
|
||||
/appsettings.Development.json
|
||||
/webmr-api.csproj.user
|
34
winipc-ua.csproj
Normal file
34
winipc-ua.csproj
Normal 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>
|
Loading…
Reference in New Issue
Block a user