Skip to content
This repository was archived by the owner on Apr 16, 2020. It is now read-only.

Commit cfcd3b1

Browse files
committed
Updated assembly info and version
1 parent be2b982 commit cfcd3b1

File tree

6 files changed

+44
-14
lines changed

6 files changed

+44
-14
lines changed

Diff for: WinFLIF/App.config

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<configSections>
4-
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5-
<section name="WinFLIF.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5+
<section name="WinFLIF.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
66
</sectionGroup>
77
</configSections>
88
<startup>
9-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
9+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
1010
</startup>
1111
<userSettings>
1212
<WinFLIF.Properties.Settings>
@@ -17,8 +17,8 @@
1717
<value>100</value>
1818
</setting>
1919
<setting name="flif_arguments" serializeAs="String">
20-
<value />
20+
<value/>
2121
</setting>
2222
</WinFLIF.Properties.Settings>
2323
</userSettings>
24-
</configuration>
24+
</configuration>

Diff for: WinFLIF/PathProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ public static class PathProvider
77
{
88
public static string GetAppDataDir()
99
{
10-
var appdata = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
11-
var dir = Path.Combine(appdata, "WinFLIF");
10+
var appDataDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
11+
var dir = Path.Combine(appDataDir, "WinFLIF");
1212

1313
if (!Directory.Exists(dir))
1414
{

Diff for: WinFLIF/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("")]
1111
[assembly: AssemblyProduct("WinFLIF")]
12-
[assembly: AssemblyCopyright("Copyright © 2018 Kamil Monicz (Zaczero)")]
12+
[assembly: AssemblyCopyright("Copyright © 2019 Kamil Monicz")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.0.0")]
35-
[assembly: AssemblyFileVersion("1.1.0.0")]
34+
[assembly: AssemblyVersion("1.2.0.0")]
35+
[assembly: AssemblyFileVersion("1.2.0.0")]

Diff for: WinFLIF/Properties/Resources.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: WinFLIF/Properties/Settings.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: WinFLIF/WinFLIF.csproj

+31-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,25 @@
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>WinFLIF</RootNamespace>
1010
<AssemblyName>WinFLIF</AssemblyName>
11-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<TargetFrameworkProfile />
15+
<PublishUrl>publish\</PublishUrl>
16+
<Install>true</Install>
17+
<InstallFrom>Disk</InstallFrom>
18+
<UpdateEnabled>false</UpdateEnabled>
19+
<UpdateMode>Foreground</UpdateMode>
20+
<UpdateInterval>7</UpdateInterval>
21+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22+
<UpdatePeriodically>false</UpdatePeriodically>
23+
<UpdateRequired>false</UpdateRequired>
24+
<MapFileExtensions>true</MapFileExtensions>
25+
<ApplicationRevision>0</ApplicationRevision>
26+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27+
<IsWebBootstrapper>false</IsWebBootstrapper>
28+
<UseApplicationTrust>false</UseApplicationTrust>
29+
<BootstrapperEnabled>true</BootstrapperEnabled>
1430
</PropertyGroup>
1531
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1632
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -21,6 +37,7 @@
2137
<DefineConstants>DEBUG;TRACE</DefineConstants>
2238
<ErrorReport>prompt</ErrorReport>
2339
<WarningLevel>4</WarningLevel>
40+
<Prefer32Bit>false</Prefer32Bit>
2441
</PropertyGroup>
2542
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2643
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -30,6 +47,7 @@
3047
<DefineConstants>TRACE</DefineConstants>
3148
<ErrorReport>prompt</ErrorReport>
3249
<WarningLevel>4</WarningLevel>
50+
<Prefer32Bit>false</Prefer32Bit>
3351
</PropertyGroup>
3452
<PropertyGroup>
3553
<ApplicationIcon>Resources\WinFLIF.ico</ApplicationIcon>
@@ -112,5 +130,17 @@
112130
<ItemGroup>
113131
<None Include="Resources\WinFLIF.ico" />
114132
</ItemGroup>
133+
<ItemGroup>
134+
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
135+
<Visible>False</Visible>
136+
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
137+
<Install>true</Install>
138+
</BootstrapperPackage>
139+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
140+
<Visible>False</Visible>
141+
<ProductName>.NET Framework 3.5 SP1</ProductName>
142+
<Install>false</Install>
143+
</BootstrapperPackage>
144+
</ItemGroup>
115145
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116146
</Project>

0 commit comments

Comments
 (0)