Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support net48 compile #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added VncSharpCore/Resources/vnccursor.cur
Binary file not shown.
1 change: 0 additions & 1 deletion VncSharpCore/VncClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,6 @@ private void Beep() // bool just so it matches the NativeMethods API signature
{
// TODO: How to do this under Unix?
System.Console.Write("Beep!");
return true;
}
#endif

Expand Down
6 changes: 5 additions & 1 deletion VncSharpCore/VncSharpCore.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<TargetFrameworks>net6.0-windows;net48;</TargetFrameworks>
<OutputType>Library</OutputType>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>VncSharpKey.snk</AssemblyOriginatorKeyFile>
Expand Down Expand Up @@ -32,6 +32,9 @@
<DebugSymbols>true</DebugSymbols>
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\vnccursor.cur" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
Expand Down Expand Up @@ -61,5 +64,6 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Resources\screenshot.png" />
<EmbeddedResource Include="Resources\vnccursor.cur" />
</ItemGroup>
</Project>