controlapp/ControlApp.csproj
Merith-TK 3e31aa0363 Decompile and Rebuild v0.1.2
begin work: base version 0993

move original program for orgnization

golang work

snapshot decompiled code

it builds! (but doesnt run)

source code bump

library stash

decompile 0.1.2, make it build
2025-02-25 21:37:38 -08:00

55 lines
No EOL
1.9 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<AssemblyName>ControlApp</AssemblyName>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<OutputType>WinExe</OutputType>
<UseWindowsForms>True</UseWindowsForms>
<TargetFramework>net8.0-windows</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace />
<ApplicationIcon>App.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="HtmlAgilityPack">
<HintPath>C:\ControlApp\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="AxInterop.WMPLib">
<HintPath>C:\ControlApp\AxInterop.WMPLib.dll</HintPath>
</Reference>
<Reference Include="Vlc.DotNet.Forms">
<HintPath>C:\ControlApp\Vlc.DotNet.Forms.dll</HintPath>
</Reference>
<Reference Include="Vlc.DotNet.Core">
<HintPath>C:\ControlApp\Vlc.DotNet.Core.dll</HintPath>
</Reference>
<Reference Include="Interop.WMPLib">
<HintPath>C:\ControlApp\Interop.WMPLib.dll</HintPath>
</Reference>
<Reference Include="System.Speech">
<HintPath>C:\ControlApp\System.Speech.dll</HintPath>
</Reference>
<Reference Include="Emgu.CV">
<HintPath>C:\ControlApp\Emgu.CV.dll</HintPath>
</Reference>
<Reference Include="Emgu.CV.Bitmap">
<HintPath>C:\ControlApp\Emgu.CV.Bitmap.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="App.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Readme.md">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>