Changed target framework
This commit is contained in:
parent
8f84544af0
commit
1b1ca8847e
|
@ -19,12 +19,4 @@ Global
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(AutomaticVersions) = postSolution
|
|
||||||
UpdateAssemblyVersion.Release|Any CPU = True
|
|
||||||
UpdateAssemblyFileVersion.Release|Any CPU = True
|
|
||||||
UpdateAssemblyInfoVersion.Release|Any CPU = True
|
|
||||||
AssemblyVersionSettings.Release|Any CPU = None.IncrementOnDemand.MonthStamp.Increment
|
|
||||||
AssemblyFileVersionSettings.Release|Any CPU = None.IncrementOnDemand.MonthStamp.Increment
|
|
||||||
AssemblyInfoVersionSettings.Release|Any CPU = None.IncrementOnDemand.MonthStamp.Increment
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<configSections>
|
<configSections>
|
||||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<section name="Discord_Media_Loader.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
<section name="Discord_Media_Loader.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
|
||||||
</sectionGroup>
|
</sectionGroup>
|
||||||
</configSections>
|
</configSections>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
|
||||||
</startup>
|
</startup>
|
||||||
<userSettings>
|
<userSettings>
|
||||||
<Discord_Media_Loader.Properties.Settings>
|
<Discord_Media_Loader.Properties.Settings>
|
||||||
<setting name="email" serializeAs="String">
|
<setting name="email" serializeAs="String">
|
||||||
<value />
|
<value/>
|
||||||
</setting>
|
</setting>
|
||||||
</Discord_Media_Loader.Properties.Settings>
|
</Discord_Media_Loader.Properties.Settings>
|
||||||
</userSettings>
|
</userSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
@ -9,9 +9,10 @@
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>Discord_Media_Loader</RootNamespace>
|
<RootNamespace>Discord_Media_Loader</RootNamespace>
|
||||||
<AssemblyName>Discord Media Loader</AssemblyName>
|
<AssemblyName>Discord Media Loader</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||||
// übernehmen, indem Sie "*" eingeben:
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("0.1.1.54")]
|
[assembly: AssemblyVersion("0.1.1.57")]
|
||||||
[assembly: AssemblyFileVersion("0.1.1.54")]
|
[assembly: AssemblyFileVersion("0.1.1.57")]
|
||||||
|
|
|
@ -68,6 +68,7 @@ namespace Discord_Media_Loader.Properties {
|
||||||
///Discord.Net (Copyright (c) 2015 RogueException - MIT License)
|
///Discord.Net (Copyright (c) 2015 RogueException - MIT License)
|
||||||
///Newtonsoft.Json (Copyright (c) 2007 James Newton-King - MIT License)
|
///Newtonsoft.Json (Copyright (c) 2007 James Newton-King - MIT License)
|
||||||
///Nito.AsyncEx (Copyright (c) 2014 StephenCleary - MIT License)
|
///Nito.AsyncEx (Copyright (c) 2014 StephenCleary - MIT License)
|
||||||
|
///RestSharp (Copyright (c) restsharp - Apache 2.0 License)
|
||||||
///WebSocket4Net (Copyright (c) kerryjiang - Apache 2.0 License) ähnelt.
|
///WebSocket4Net (Copyright (c) kerryjiang - Apache 2.0 License) ähnelt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal static string AboutString {
|
internal static string AboutString {
|
||||||
|
|
|
@ -125,6 +125,7 @@ Made with:
|
||||||
Discord.Net (Copyright (c) 2015 RogueException - MIT License)
|
Discord.Net (Copyright (c) 2015 RogueException - MIT License)
|
||||||
Newtonsoft.Json (Copyright (c) 2007 James Newton-King - MIT License)
|
Newtonsoft.Json (Copyright (c) 2007 James Newton-King - MIT License)
|
||||||
Nito.AsyncEx (Copyright (c) 2014 StephenCleary - MIT License)
|
Nito.AsyncEx (Copyright (c) 2014 StephenCleary - MIT License)
|
||||||
|
RestSharp (Copyright (c) restsharp - Apache 2.0 License)
|
||||||
WebSocket4Net (Copyright (c) kerryjiang - Apache 2.0 License)</value>
|
WebSocket4Net (Copyright (c) kerryjiang - Apache 2.0 License)</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
Loading…
Reference in a new issue