mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
9e1ef4a095
Installer works, but there are a few issues with it. - It doesn't register the DesktopBackground COM server - It doesn't create a start menu shortcut with the AUMID - It doesn't check for .Net Framework 4.8 or later - It doesn't try to install .Net Framework 4.8 or later if not there - It doesn't have any customised backgrounds... - It doesn't ask to run DisplayMagician when install is finished
24 lines
765 B
XML
24 lines
765 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<ApplicationIcon>DisplayMagician.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="nunit" Version="3.12.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DisplayMagician.LogReporter\DisplayMagicianLogReporter.csproj" />
|
|
<ProjectReference Include="..\DisplayMagicianShared\DisplayMagicianShared.csproj" />
|
|
<ProjectReference Include="..\DisplayMagician\DisplayMagician.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|