-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFunscriptPreviewHandler.csproj
More file actions
42 lines (38 loc) · 1.58 KB
/
FunscriptPreviewHandler.csproj
File metadata and controls
42 lines (38 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<AssemblyName>FunScriptPreviewHandler</AssemblyName>
<RootNamespace>FunScriptPreviewHandler</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RegisterForComInterop>false</RegisterForComInterop>
<Platforms>AnyCPU</Platforms>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<Version>1.0.0</Version>
<Authors>martinAlt335</Authors>
<Description>.NET handler to preview .funscript files directly in the Windows Explorer preview pane.
</Description>
<Copyright>Copyright © 2025</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ServerRegistrationManager" Version="2.7.2" />
<PackageReference Include="SharpShell" Version="2.7.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<None Include="Key.snk" />
</ItemGroup>
</Project>