-
Notifications
You must be signed in to change notification settings - Fork 2
/
GmicAnimator.csproj
110 lines (108 loc) · 4.77 KB
/
GmicAnimator.csproj
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>GmicDrosteAnimate</RootNamespace>
<ForceDesignerDPIUnaware>false</ForceDesignerDPIUnaware>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<ForceDesignerDPIUnaware>false</ForceDesignerDPIUnaware>
<LangVersion>12.0</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PlatformTarget>AnyCPU</PlatformTarget>
<ApplicationIcon>GmicAnimateIcon.ico</ApplicationIcon>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<!-- Standard Versioning Properties -->
<Version>1.1.0</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<InformationalVersion>1.0.0</InformationalVersion>
<!-- Additional Metadata -->
<Authors>ThioJoe</Authors>
<Product>G'MIC Animator</Product>
<!-- <Copyright>Copyright © Your Company 2024</Copyright>-->
<Description>Animate G'MIC filters</Description>
<PackageProjectUrl>https://github.com/ThioJoe/Gmic-Animation-Tools</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\x64\Debug\</OutputPath>
<LangVersion>12.0</LangVersion>
<ForceDesignerDPIUnaware>false</ForceDesignerDPIUnaware>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>Releases\</OutputPath>
<LangVersion>7.3</LangVersion>
<ForceDesignerDPIUnaware>false</ForceDesignerDPIUnaware>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin.bak\**" />
<Compile Remove="obj.bak\**" />
<Compile Remove="PowerShell\**" />
<Compile Remove="Releases.bak\**" />
<EmbeddedResource Remove="bin.bak\**" />
<EmbeddedResource Remove="obj.bak\**" />
<EmbeddedResource Remove="PowerShell\**" />
<EmbeddedResource Remove="Releases.bak\**" />
<None Remove="bin.bak\**" />
<None Remove="obj.bak\**" />
<None Remove="PowerShell\**" />
<None Remove="Releases.bak\**" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Content Include="GmicAnimateIcon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FParsec" Version="2.0.0-beta2" />
<PackageReference Include="MathNet.Numerics" Version="6.0.0-beta1" />
<PackageReference Include="MathNet.Numerics.FSharp" Version="6.0.0-beta1" />
<PackageReference Include="MathNet.Symbolics" Version="0.25.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="8.0.0" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="8.0.5" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Windows.Forms.DataVisualization" Version="1.0.0-prerelease.20110.1" />
</ItemGroup>
<ItemGroup>
<Compile Update="GifToolForm.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>