corrade-vassal

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 20  →  ?path2? @ 19
/Vassal/Vassal/Properties/Resources.Designer.cs
@@ -8,10 +8,10 @@
// </auto-generated>
//------------------------------------------------------------------------------
 
namespace Vassal.Properties {
using System;
namespace Vassal.Properties
{
 
 
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
@@ -22,23 +22,28 @@
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
internal class Resources
{
 
private static global::System.Resources.ResourceManager resourceMan;
 
private static global::System.Globalization.CultureInfo resourceCulture;
 
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
internal Resources()
{
}
 
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Vassal.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
@@ -45,17 +50,20 @@
return resourceMan;
}
}
 
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set {
set
{
resourceCulture = value;
}
}
/Vassal/Vassal/VassalForm.cs
@@ -436,7 +436,7 @@
}
// Create HTTP Client
HTTPClient = new Web.wasHTTPClient(new ProductInfoHeaderValue(@"Vassal",
VASSAL_VERSION), mediaType, vassalConfiguration.ServicesTimeout);
VASSAL_VERSION), new CookieContainer(), mediaType, vassalConfiguration.ServicesTimeout);
}
 
// Get all the regions if they exist.
/Vassal/Vassal/SettingsForm.cs
@@ -89,7 +89,9 @@
mediaType = @"text/plain";
break;
}
Vassal.HTTPClient = new Web.wasHTTPClient(new ProductInfoHeaderValue(@"Vassal", Vassal.VASSAL_VERSION), mediaType, 60000);
// Create HTTP Client
Vassal.HTTPClient = new Web.wasHTTPClient(new ProductInfoHeaderValue(@"Vassal",
Vassal.VASSAL_VERSION), new CookieContainer(), mediaType, 60000);
};
 
private readonly Action SetUserConfiguration = () =>
@@ -141,7 +143,7 @@
}
// Create HTTP Client
Vassal.HTTPClient = new Web.wasHTTPClient(new ProductInfoHeaderValue(@"Vassal",
Vassal.VASSAL_VERSION), mediaType, 60000);
Vassal.VASSAL_VERSION), new CookieContainer(), mediaType, 60000);
};
 
public SettingsForm()
@@ -239,7 +241,7 @@
ActiveInputFilters.Items.Add(new ListViewItem
{
Text = InputDecode.Text,
Tag = Reflection.GetEnumValueFromName<Filter>(InputDecode.Text)
Tag = Reflection.GetEnumValueFromDescription<Filter>(InputDecode.Text)
});
}));
}
@@ -257,7 +259,7 @@
ActiveInputFilters.Items.Add(new ListViewItem
{
Text = InputDecryption.Text,
Tag = Reflection.GetEnumValueFromName<Filter>(InputDecryption.Text)
Tag = Reflection.GetEnumValueFromDescription<Filter>(InputDecryption.Text)
});
}));
}
@@ -275,7 +277,7 @@
ActiveOutputFilters.Items.Add(new ListViewItem
{
Text = OutputEncrypt.Text,
Tag = Reflection.GetEnumValueFromName<Filter>(OutputEncrypt.Text)
Tag = Reflection.GetEnumValueFromDescription<Filter>(OutputEncrypt.Text)
});
}));
}
@@ -293,7 +295,7 @@
ActiveOutputFilters.Items.Add(new ListViewItem
{
Text = OutputEncode.Text,
Tag = Reflection.GetEnumValueFromName<Filter>(OutputEncode.Text)
Tag = Reflection.GetEnumValueFromDescription<Filter>(OutputEncode.Text)
});
}));
}
/Vassal/Vassal/Vassal.csproj
@@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Vassal</RootNamespace>
<AssemblyName>Vassal</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
@@ -26,7 +26,6 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -78,6 +77,9 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="wasSharp">
<HintPath>..\..\wasSharp\bin\Release\wasSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="RegionEditForm.cs">
@@ -118,7 +120,6 @@
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="..\..\libopenmetaverse-overrides\libopenjpeg-dotnet-2-1.5.0-dotnet-1-arm.so">
<Link>libopenjpeg-dotnet-2-1.5.0-dotnet-1-arm.so</Link>
@@ -180,12 +181,6 @@
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\wasSharp\wasSharp.csproj">
<Project>{a971e1c9-776c-4cd2-88ac-71197c7b955e}</Project>
<Name>wasSharp</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
/Vassal/Vassal/App.config
@@ -1,10 +1,10 @@
<configuration>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="libs"/>
<probing privatePath="libs" />
</assemblyBinding>
<!--
You can enable only one of these settings by commenting them out.
@@ -19,4 +19,4 @@
<gcServer enabled="true"/>
-->
</runtime>
</configuration>
</configuration>