Flow.Launcher/Wox/App.config
Jeremy Wu 0f2ebfbe00
Remove UwpDesktop library dependency and upgrade to framework 4.6.2 (#159)
* 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
2020-03-10 09:35:31 +02:00

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>