38 lines
1.1 KiB
XML
38 lines
1.1 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net40</TargetFramework>
|
||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
||
|
|
<AssemblyName>SlideCombine</AssemblyName>
|
||
|
|
<RootNamespace>SlideCombine</RootNamespace>
|
||
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||
|
|
<Deterministic>false</Deterministic>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
||
|
|
</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>
|