mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
* Remove UwpDesktop dependency of lower sdk and add Win SDK Contracts * Upgrade from .Net Framework 4.5.2 to 4.6.2 This upgrade is needed to use Microsoft Windows SDK Contracts library from previous commit * Remove Windows SDK references as no longer required
19 lines
959 B
XML
19 lines
959 B
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<!--https://msdn.microsoft.com/en-us/library/dd409252(v=vs.110).aspx-->
|
|
<configSections>
|
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
<section name="Wox.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
|
</sectionGroup>
|
|
</configSections>
|
|
<runtime>
|
|
<loadFromRemoteSources enabled="true"/>
|
|
</runtime>
|
|
<applicationSettings>
|
|
<Wox.Properties.Settings>
|
|
<setting name="GithubRepo" serializeAs="String">
|
|
<value>https://github.com/Wox-launcher/Wox</value>
|
|
</setting>
|
|
</Wox.Properties.Settings>
|
|
</applicationSettings>
|
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/></startup></configuration>
|