43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<AssemblyName>SlideCombine</AssemblyName>
|
||
|
|
<RootNamespace>SlideCombine</RootNamespace>
|
||
|
|
<PublishSingleFile>true</PublishSingleFile>
|
||
|
|
<SelfContained>true</SelfContained>
|
||
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
||
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Compile Include="Program.cs" />
|
||
|
|
<Compile Include="Form1.cs">
|
||
|
|
<SubType>Form</SubType>
|
||
|
|
</Compile>
|
||
|
|
<Compile Include="Form1.Designer.cs">
|
||
|
|
<DependentUpon>Form1.cs</DependentUpon>
|
||
|
|
</Compile>
|
||
|
|
<Compile Include="BookmarkExtractor.cs" />
|
||
|
|
<Compile Include="ContentFormatter.cs" />
|
||
|
|
<Compile Include="FileMerger.cs" />
|
||
|
|
<Compile Include="MetadataModel.cs" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<EmbeddedResource Include="Form1.resx">
|
||
|
|
<DependentUpon>Form1.cs</DependentUpon>
|
||
|
|
</EmbeddedResource>
|
||
|
|
<EmbeddedResource Include="app.ico" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|