Initial commit

This commit is contained in:
2025-05-10 20:37:54 +02:00
commit 51e854364f
16 changed files with 438 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Bring2mind.DnnConnect2025Demo.SysMonitor</AssemblyName>
<TargetFramework>net48</TargetFramework>
<OutputPath>bin</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<Authors>Peter Donker</Authors>
<Company>Bring2mind</Company>
<Product>dnnconnect2025demo</Product>
<Copyright>Copyright 2025 by Bring2mind</Copyright>
<PackageId>DnnConnect2025Demo</PackageId>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<Description>DnnConnect2025Demo module</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<DebugType>Portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNetNuke.Abstractions" Version="10.0.0" />
<PackageReference Include="DotNetNuke.Core" Version="10.0.0" />
<PackageReference Include="DotNetNuke.WebApi" Version="10.0.0" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Web" />
</ItemGroup>
</Project>