diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-04-10 12:36:35 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-04-10 12:36:35 -0230 |
commit | 047f7fb5c8de8cb604f16fcce9b2da11612cbbf5 (patch) | |
tree | 4fbafbae077aae6154cc6b8c0fd4663818f20172 /csharp/test | |
parent | Fixed install in python and php (diff) | |
download | ice-047f7fb5c8de8cb604f16fcce9b2da11612cbbf5.tar.bz2 ice-047f7fb5c8de8cb604f16fcce9b2da11612cbbf5.tar.xz ice-047f7fb5c8de8cb604f16fcce9b2da11612cbbf5.zip |
Some more cleanup of Silverlight files
Diffstat (limited to 'csharp/test')
193 files changed, 0 insertions, 7334 deletions
diff --git a/csharp/test/Ice/adapterDeactivation/App.xaml b/csharp/test/Ice/adapterDeactivation/App.xaml deleted file mode 100644 index cb9c57593e8..00000000000 --- a/csharp/test/Ice/adapterDeactivation/App.xaml +++ /dev/null @@ -1,7 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="adapterDeactivation.App" - > - <Application.Resources> - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/adapterDeactivation/App.xaml.cs b/csharp/test/Ice/adapterDeactivation/App.xaml.cs deleted file mode 100644 index a1edce38dbb..00000000000 --- a/csharp/test/Ice/adapterDeactivation/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace adapterDeactivation -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/adapterDeactivation/Properties/AppManifest.xml b/csharp/test/Ice/adapterDeactivation/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/adapterDeactivation/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/adapterDeactivation/Properties/AssemblyInfo.cs b/csharp/test/Ice/adapterDeactivation/Properties/AssemblyInfo.cs deleted file mode 100644 index c0f7b9f960b..00000000000 --- a/csharp/test/Ice/adapterDeactivation/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("adapterDeactivation")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("adapterDeactivation")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("2fd7fe0f-de28-4b62-bbdb-e40fa6ba823a")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/adapterDeactivation/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/adapterDeactivation/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index e6989927830..00000000000 --- a/csharp/test/Ice/adapterDeactivation/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Adapter Deactivation Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Adapter Deactivation Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Adapter Deactivation Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/adapterDeactivation/adapterDeactivation.csproj b/csharp/test/Ice/adapterDeactivation/adapterDeactivation.csproj deleted file mode 100644 index b8e7fd105ad..00000000000 --- a/csharp/test/Ice/adapterDeactivation/adapterDeactivation.csproj +++ /dev/null @@ -1,114 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{73497706-4139-4821-B8DF-E83654E6EE55}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>adapterDeactivation</RootNamespace> - <AssemblyName>adapterDeactivation</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>adapterDeactivation.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>adapterDeactivation.App</SilverlightAppEntry> - <TestPageFileName>adapterDeactivation.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/adapterDeactivation/generated/sl/.gitignore b/csharp/test/Ice/adapterDeactivation/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/adapterDeactivation/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/ami/App.xaml b/csharp/test/Ice/ami/App.xaml deleted file mode 100644 index d6246bec72d..00000000000 --- a/csharp/test/Ice/ami/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="ami.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/ami/App.xaml.cs b/csharp/test/Ice/ami/App.xaml.cs deleted file mode 100644 index 9aad98fd75f..00000000000 --- a/csharp/test/Ice/ami/App.xaml.cs +++ /dev/null @@ -1,80 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace ami -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/ami/Properties/AppManifest.xml b/csharp/test/Ice/ami/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/ami/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/ami/Properties/AssemblyInfo.cs b/csharp/test/Ice/ami/Properties/AssemblyInfo.cs deleted file mode 100644 index 805d56a47b4..00000000000 --- a/csharp/test/Ice/ami/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("ami")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("ami")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("b9651a78-cce8-4dcf-9d08-45fa7a88d0d6")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/ami/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/ami/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index d423e0bd0db..00000000000 --- a/csharp/test/Ice/ami/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="AMI Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>AMI Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="AMI Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/ami/ami.csproj b/csharp/test/Ice/ami/ami.csproj deleted file mode 100644 index 3081862d540..00000000000 --- a/csharp/test/Ice/ami/ami.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{7A9447E3-31BF-46DF-A3FF-B4DF792DE86F}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>ami</RootNamespace> - <AssemblyName>ami</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>ami.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>ami.App</SilverlightAppEntry> - <TestPageFileName>amiTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/ami/generated/sl/.gitignore b/csharp/test/Ice/ami/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/ami/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/binding/App.xaml b/csharp/test/Ice/binding/App.xaml deleted file mode 100644 index c463af180b7..00000000000 --- a/csharp/test/Ice/binding/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="binding.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/binding/App.xaml.cs b/csharp/test/Ice/binding/App.xaml.cs deleted file mode 100644 index 62b2e3cfb6b..00000000000 --- a/csharp/test/Ice/binding/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace binding -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/binding/Properties/AppManifest.xml b/csharp/test/Ice/binding/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/binding/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/binding/Properties/AssemblyInfo.cs b/csharp/test/Ice/binding/Properties/AssemblyInfo.cs deleted file mode 100644 index ada312329ea..00000000000 --- a/csharp/test/Ice/binding/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("binding")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc., Inc.")] -[assembly: AssemblyProduct("binding")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("6b218ca6-e358-411e-9647-de0f61d5d9bb")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/binding/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/binding/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index b77a07b8769..00000000000 --- a/csharp/test/Ice/binding/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Binding Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Binding Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Binding Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/binding/binding.csproj b/csharp/test/Ice/binding/binding.csproj deleted file mode 100644 index cbe6e4812d1..00000000000 --- a/csharp/test/Ice/binding/binding.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{974F0F9B-7EB4-4566-B5C8-1313AE9218A5}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>binding</RootNamespace> - <AssemblyName>binding</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>binding.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>binding.App</SilverlightAppEntry> - <TestPageFileName>bindingTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/binding/generated/sl/.gitignore b/csharp/test/Ice/binding/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/binding/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/defaultServant/Properties/AppManifest.xml b/csharp/test/Ice/defaultServant/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/defaultServant/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/defaultServant/Properties/AssemblyInfo.cs b/csharp/test/Ice/defaultServant/Properties/AssemblyInfo.cs deleted file mode 100644 index baab961e515..00000000000 --- a/csharp/test/Ice/defaultServant/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("defaultValue")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("defaultValue")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("d18112f7-647f-489c-9a63-7d56b6ce4e7c")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/defaultServant/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/defaultServant/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 6d4116f7111..00000000000 --- a/csharp/test/Ice/defaultServant/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Default Value Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Default Value Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Default Value Test" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/defaultValue/App.xaml b/csharp/test/Ice/defaultValue/App.xaml deleted file mode 100644 index 49f12e8f4e3..00000000000 --- a/csharp/test/Ice/defaultValue/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="defaultValue.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/defaultValue/App.xaml.cs b/csharp/test/Ice/defaultValue/App.xaml.cs deleted file mode 100644 index bc8963c1a55..00000000000 --- a/csharp/test/Ice/defaultValue/App.xaml.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace defaultValue -{ - public partial class App : Application - { - - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/defaultValue/Properties/AppManifest.xml b/csharp/test/Ice/defaultValue/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/defaultValue/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/defaultValue/Properties/AssemblyInfo.cs b/csharp/test/Ice/defaultValue/Properties/AssemblyInfo.cs deleted file mode 100644 index baab961e515..00000000000 --- a/csharp/test/Ice/defaultValue/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("defaultValue")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("defaultValue")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("d18112f7-647f-489c-9a63-7d56b6ce4e7c")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/defaultValue/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/defaultValue/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index d6a0bfe1311..00000000000 --- a/csharp/test/Ice/defaultValue/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Default Value Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Default Value Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Default Value Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/defaultValue/defaultValue.csproj b/csharp/test/Ice/defaultValue/defaultValue.csproj deleted file mode 100644 index 1f143aa9328..00000000000 --- a/csharp/test/Ice/defaultValue/defaultValue.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{0858ED5B-68D1-444D-912C-6147BC4FC968}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>defaultValue</RootNamespace> - <AssemblyName>defaultValue</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>defaultValue.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>defaultValue.App</SilverlightAppEntry> - <TestPageFileName>defaultValueTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/defaultValue/generated/sl/.gitignore b/csharp/test/Ice/defaultValue/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/defaultValue/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/dictMapping/App.xaml b/csharp/test/Ice/dictMapping/App.xaml deleted file mode 100644 index 9f59de7496a..00000000000 --- a/csharp/test/Ice/dictMapping/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="dictMapping.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/dictMapping/App.xaml.cs b/csharp/test/Ice/dictMapping/App.xaml.cs deleted file mode 100644 index c5a9695b8d7..00000000000 --- a/csharp/test/Ice/dictMapping/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace dictMapping -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/dictMapping/Properties/AppManifest.xml b/csharp/test/Ice/dictMapping/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/dictMapping/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/dictMapping/Properties/AssemblyInfo.cs b/csharp/test/Ice/dictMapping/Properties/AssemblyInfo.cs deleted file mode 100644 index ce07760b973..00000000000 --- a/csharp/test/Ice/dictMapping/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("dictMapping")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("dictMapping")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f42f249d-34fb-4181-b59f-3634b60e49fc")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/dictMapping/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/dictMapping/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 596535696ee..00000000000 --- a/csharp/test/Ice/dictMapping/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Dict Mapping Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Dict Mapping Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Dict Mapping Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/dictMapping/dictMapping.csproj b/csharp/test/Ice/dictMapping/dictMapping.csproj deleted file mode 100644 index 73c01d56f4a..00000000000 --- a/csharp/test/Ice/dictMapping/dictMapping.csproj +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{4F085C35-BF17-4947-BB56-E5F48C1C30E8}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>dictMapping</RootNamespace> - <AssemblyName>dictMapping</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>dictMapping.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>dictMapping.App</SilverlightAppEntry> - <TestPageFileName>dictMappingTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="Twoways.cs" /> - <Compile Include="TwowaysAMI.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/dictMapping/generated/sl/.gitignore b/csharp/test/Ice/dictMapping/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/dictMapping/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/dispatcher/App.xaml b/csharp/test/Ice/dispatcher/App.xaml deleted file mode 100644 index ab6f24abee6..00000000000 --- a/csharp/test/Ice/dispatcher/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="dispatcher.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/dispatcher/App.xaml.cs b/csharp/test/Ice/dispatcher/App.xaml.cs deleted file mode 100644 index 7075365bb1b..00000000000 --- a/csharp/test/Ice/dispatcher/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace dispatcher -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/dispatcher/Properties/AppManifest.xml b/csharp/test/Ice/dispatcher/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/dispatcher/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/dispatcher/Properties/AssemblyInfo.cs b/csharp/test/Ice/dispatcher/Properties/AssemblyInfo.cs deleted file mode 100644 index 553991c9c2f..00000000000 --- a/csharp/test/Ice/dispatcher/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("dispatcher")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("dispatcher")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("71633122-5b1a-4fc0-b636-f893e7d28d62")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/dispatcher/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/dispatcher/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 252763a7edc..00000000000 --- a/csharp/test/Ice/dispatcher/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Dispatcher Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Dispatcher Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Dispatcher Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/dispatcher/dispatcher.csproj b/csharp/test/Ice/dispatcher/dispatcher.csproj deleted file mode 100644 index 1541a68818d..00000000000 --- a/csharp/test/Ice/dispatcher/dispatcher.csproj +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{E71BAF76-681E-43F5-930F-8B547F4978C3}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>dispatcher</RootNamespace> - <AssemblyName>dispatcher</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>dispatcher.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>dispatcher.App</SilverlightAppEntry> - <TestPageFileName>dispatcherTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="Dispatcher.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/dispatcher/generated/sl/.gitignore b/csharp/test/Ice/dispatcher/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/dispatcher/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/enums/App.xaml b/csharp/test/Ice/enums/App.xaml deleted file mode 100644 index 98401950806..00000000000 --- a/csharp/test/Ice/enums/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="enums.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/enums/App.xaml.cs b/csharp/test/Ice/enums/App.xaml.cs deleted file mode 100644 index c822a95a067..00000000000 --- a/csharp/test/Ice/enums/App.xaml.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace enums -{ - public partial class App : Application - { - - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/enums/Properties/AppManifest.xml b/csharp/test/Ice/enums/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/enums/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/enums/Properties/AssemblyInfo.cs b/csharp/test/Ice/enums/Properties/AssemblyInfo.cs deleted file mode 100644 index 7bee3fa2cf6..00000000000 --- a/csharp/test/Ice/enums/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("enums")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("enums")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("cde48848-0dd3-46c6-aa92-c2af72886aa1")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/enums/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/enums/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 12e87373a71..00000000000 --- a/csharp/test/Ice/enums/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Enums Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Enums Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Enums Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings> diff --git a/csharp/test/Ice/enums/enums.csproj b/csharp/test/Ice/enums/enums.csproj deleted file mode 100644 index 250423c033a..00000000000 --- a/csharp/test/Ice/enums/enums.csproj +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{5CF5A1CF-0187-42A2-AA9E-D50A00AC7D65}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>enums</RootNamespace> - <AssemblyName>enums</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>enums.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>enums.App</SilverlightAppEntry> - <TestPageFileName>enumsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup /> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" ZerocIce_Streaming="True" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/enums/generated/sl/.gitignore b/csharp/test/Ice/enums/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/enums/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/exceptions/App.xaml b/csharp/test/Ice/exceptions/App.xaml deleted file mode 100644 index 0840e58a13e..00000000000 --- a/csharp/test/Ice/exceptions/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="exceptions.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/exceptions/App.xaml.cs b/csharp/test/Ice/exceptions/App.xaml.cs deleted file mode 100644 index 6901eaa58b3..00000000000 --- a/csharp/test/Ice/exceptions/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace exceptions -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/exceptions/Properties/AppManifest.xml b/csharp/test/Ice/exceptions/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/exceptions/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/exceptions/Properties/AssemblyInfo.cs b/csharp/test/Ice/exceptions/Properties/AssemblyInfo.cs deleted file mode 100644 index 65b29bda18b..00000000000 --- a/csharp/test/Ice/exceptions/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("exceptions")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("exceptions")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("fe860a01-5013-4fb3-bed2-236d1d56cdcf")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/exceptions/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/exceptions/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 37b04b93874..00000000000 --- a/csharp/test/Ice/exceptions/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Exceptions Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Exceptions Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Exceptions Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/exceptions/exceptions.csproj b/csharp/test/Ice/exceptions/exceptions.csproj deleted file mode 100644 index 37e70ae5016..00000000000 --- a/csharp/test/Ice/exceptions/exceptions.csproj +++ /dev/null @@ -1,118 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{270ADFFA-8123-4C8C-B117-607A3AE4973D}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>exceptions</RootNamespace> - <AssemblyName>exceptions</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>exceptions.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>exceptions.App</SilverlightAppEntry> - <TestPageFileName>exceptionsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="ObjectFactoryI.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml"> - <SubType>Designer</SubType> - </None> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/exceptions/generated/sl/.gitignore b/csharp/test/Ice/exceptions/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/exceptions/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/facets/App.xaml b/csharp/test/Ice/facets/App.xaml deleted file mode 100644 index 1779b536307..00000000000 --- a/csharp/test/Ice/facets/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="facets.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/facets/App.xaml.cs b/csharp/test/Ice/facets/App.xaml.cs deleted file mode 100644 index 314c33c8119..00000000000 --- a/csharp/test/Ice/facets/App.xaml.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace facets -{ - public partial class App : Application - { - - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/facets/Properties/AppManifest.xml b/csharp/test/Ice/facets/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/facets/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/facets/Properties/AssemblyInfo.cs b/csharp/test/Ice/facets/Properties/AssemblyInfo.cs deleted file mode 100644 index b44fc7e7289..00000000000 --- a/csharp/test/Ice/facets/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("facets")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("facets")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("aaa04446-c929-499a-b9b5-667df952d40c")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/facets/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/facets/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 1a62c962213..00000000000 --- a/csharp/test/Ice/facets/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Facets Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Facets Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Facets Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/facets/facets.csproj b/csharp/test/Ice/facets/facets.csproj deleted file mode 100644 index 6f6711e5f59..00000000000 --- a/csharp/test/Ice/facets/facets.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{ACEFEC42-29BF-48E8-BF14-EB554CD06EEF}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>facets</RootNamespace> - <AssemblyName>facets</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>facets.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>facets.App</SilverlightAppEntry> - <TestPageFileName>facetsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/facets/generated/sl/.gitignore b/csharp/test/Ice/facets/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/facets/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/faultTolerance/App.xaml b/csharp/test/Ice/faultTolerance/App.xaml deleted file mode 100644 index bb96b01e371..00000000000 --- a/csharp/test/Ice/faultTolerance/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="faultTolerance.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/faultTolerance/App.xaml.cs b/csharp/test/Ice/faultTolerance/App.xaml.cs deleted file mode 100644 index d1de4e146d7..00000000000 --- a/csharp/test/Ice/faultTolerance/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace faultTolerance -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/faultTolerance/Properties/AppManifest.xml b/csharp/test/Ice/faultTolerance/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/faultTolerance/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/faultTolerance/Properties/AssemblyInfo.cs b/csharp/test/Ice/faultTolerance/Properties/AssemblyInfo.cs deleted file mode 100644 index 1e48a0763a3..00000000000 --- a/csharp/test/Ice/faultTolerance/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("faultTolerance")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("faultTolerance")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("73af01ab-3917-46fd-b75c-59ac2e5673bf")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/faultTolerance/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/faultTolerance/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 6c457176516..00000000000 --- a/csharp/test/Ice/faultTolerance/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Fault Tolerance Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Fault Tolerance Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Fault Tolerance Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/faultTolerance/faultTolerance.csproj b/csharp/test/Ice/faultTolerance/faultTolerance.csproj deleted file mode 100644 index 71051e51ddb..00000000000 --- a/csharp/test/Ice/faultTolerance/faultTolerance.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{61AD7756-4BB3-4772-AB43-A42F5C3CBB34}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>faultTolerance</RootNamespace> - <AssemblyName>faultTolerance</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>faultTolerance.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>faultTolerance.App</SilverlightAppEntry> - <TestPageFileName>faultToleranceTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/faultTolerance/generated/sl/.gitignore b/csharp/test/Ice/faultTolerance/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/faultTolerance/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/hold/App.xaml b/csharp/test/Ice/hold/App.xaml deleted file mode 100644 index 3fc9745302e..00000000000 --- a/csharp/test/Ice/hold/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="hold.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/hold/App.xaml.cs b/csharp/test/Ice/hold/App.xaml.cs deleted file mode 100644 index ad364ac9729..00000000000 --- a/csharp/test/Ice/hold/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace hold -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/hold/Properties/AppManifest.xml b/csharp/test/Ice/hold/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/hold/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/hold/Properties/AssemblyInfo.cs b/csharp/test/Ice/hold/Properties/AssemblyInfo.cs deleted file mode 100644 index 8880a944fd1..00000000000 --- a/csharp/test/Ice/hold/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("hold")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("hold")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("53067721-a3df-445f-b346-81fba8cb747c")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/hold/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/hold/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 9ff4f5ffbdb..00000000000 --- a/csharp/test/Ice/hold/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Hold Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Hold Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Hold Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/hold/generated/sl/.gitignore b/csharp/test/Ice/hold/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/hold/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/hold/hold.csproj b/csharp/test/Ice/hold/hold.csproj deleted file mode 100644 index fdbbd0f654e..00000000000 --- a/csharp/test/Ice/hold/hold.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{44EFC26A-42E7-46A8-B371-96969E8128ED}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>hold</RootNamespace> - <AssemblyName>hold</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>hold.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>hold.App</SilverlightAppEntry> - <TestPageFileName>holdTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/info/App.xaml b/csharp/test/Ice/info/App.xaml deleted file mode 100644 index 2757f4787a5..00000000000 --- a/csharp/test/Ice/info/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="info.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/info/App.xaml.cs b/csharp/test/Ice/info/App.xaml.cs deleted file mode 100644 index 44b7281dd2b..00000000000 --- a/csharp/test/Ice/info/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace info -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/info/Properties/AppManifest.xml b/csharp/test/Ice/info/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/info/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/info/Properties/AssemblyInfo.cs b/csharp/test/Ice/info/Properties/AssemblyInfo.cs deleted file mode 100644 index f3718262748..00000000000 --- a/csharp/test/Ice/info/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("info")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("info")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("e73785c9-f924-423c-ac91-fcc7b8884e0c")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/info/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/info/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 84bfb9003b4..00000000000 --- a/csharp/test/Ice/info/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Info Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Info Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Info Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/info/generated/sl/.gitignore b/csharp/test/Ice/info/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/info/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/info/info.csproj b/csharp/test/Ice/info/info.csproj deleted file mode 100644 index 691149100a0..00000000000 --- a/csharp/test/Ice/info/info.csproj +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{11F271A3-319C-4C8F-B1C6-508416D8EB6A}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>info</RootNamespace> - <AssemblyName>info</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>info.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>info.App</SilverlightAppEntry> - <TestPageFileName>infoTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup /> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/inheritance/App.xaml b/csharp/test/Ice/inheritance/App.xaml deleted file mode 100644 index 0f916c0fb2f..00000000000 --- a/csharp/test/Ice/inheritance/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="inheritance.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/inheritance/App.xaml.cs b/csharp/test/Ice/inheritance/App.xaml.cs deleted file mode 100644 index 89ca9e4738a..00000000000 --- a/csharp/test/Ice/inheritance/App.xaml.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace inheritance -{ - public partial class App : Application - { - - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/inheritance/Properties/AppManifest.xml b/csharp/test/Ice/inheritance/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/inheritance/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/inheritance/Properties/AssemblyInfo.cs b/csharp/test/Ice/inheritance/Properties/AssemblyInfo.cs deleted file mode 100644 index 9bdc94cab54..00000000000 --- a/csharp/test/Ice/inheritance/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("inheritance")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("inheritance")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5264c7d8-3353-469e-828a-b42f454b8d1b")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/inheritance/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/inheritance/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 373b6028392..00000000000 --- a/csharp/test/Ice/inheritance/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Inheritance Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Inheritance Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Inheritance Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/inheritance/generated/sl/.gitignore b/csharp/test/Ice/inheritance/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/inheritance/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/inheritance/inheritance.csproj b/csharp/test/Ice/inheritance/inheritance.csproj deleted file mode 100644 index d85c3be7128..00000000000 --- a/csharp/test/Ice/inheritance/inheritance.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{0C325152-DF80-4BFF-A412-EAC75504B393}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>inheritance</RootNamespace> - <AssemblyName>inheritance</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>inheritance.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>inheritance.App</SilverlightAppEntry> - <TestPageFileName>inheritanceTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/invoke/App.xaml b/csharp/test/Ice/invoke/App.xaml deleted file mode 100644 index 361b38c2e99..00000000000 --- a/csharp/test/Ice/invoke/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="invoke.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/invoke/App.xaml.cs b/csharp/test/Ice/invoke/App.xaml.cs deleted file mode 100644 index 7618d553d63..00000000000 --- a/csharp/test/Ice/invoke/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace invoke -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/invoke/Properties/AppManifest.xml b/csharp/test/Ice/invoke/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/invoke/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/invoke/Properties/AssemblyInfo.cs b/csharp/test/Ice/invoke/Properties/AssemblyInfo.cs deleted file mode 100644 index 730df420dad..00000000000 --- a/csharp/test/Ice/invoke/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("invoke")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("invoke")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("ed22e757-0252-4801-be0f-a9977d49fe8a")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/invoke/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/invoke/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index e82087156c3..00000000000 --- a/csharp/test/Ice/invoke/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Invoke Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Invoke Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Invoke Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/invoke/generated/sl/.gitignore b/csharp/test/Ice/invoke/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/invoke/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/invoke/invoke.csproj b/csharp/test/Ice/invoke/invoke.csproj deleted file mode 100644 index 57f33888a1b..00000000000 --- a/csharp/test/Ice/invoke/invoke.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{95E9131E-6630-4658-B48F-405DDBE0C1C9}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>invoke</RootNamespace> - <AssemblyName>invoke</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>invoke.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>invoke.App</SilverlightAppEntry> - <TestPageFileName>invokeTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/location/App.xaml b/csharp/test/Ice/location/App.xaml deleted file mode 100644 index 396a62ba39a..00000000000 --- a/csharp/test/Ice/location/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="location.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/location/App.xaml.cs b/csharp/test/Ice/location/App.xaml.cs deleted file mode 100644 index 2b6dd1183ba..00000000000 --- a/csharp/test/Ice/location/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace location -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/location/Properties/AppManifest.xml b/csharp/test/Ice/location/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/location/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/location/Properties/AssemblyInfo.cs b/csharp/test/Ice/location/Properties/AssemblyInfo.cs deleted file mode 100644 index 046602d3f94..00000000000 --- a/csharp/test/Ice/location/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("location")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("location")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("05699060-e3cb-4aa0-98f3-193dcad053e1")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/location/Properties/InBrowserSettings.xml b/csharp/test/Ice/location/Properties/InBrowserSettings.xml deleted file mode 100644 index 0c41b0763ad..00000000000 --- a/csharp/test/Ice/location/Properties/InBrowserSettings.xml +++ /dev/null @@ -1,5 +0,0 @@ -<InBrowserSettings> - <InBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="NotRequired" /> - </InBrowserSettings.SecuritySettings> -</InBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/location/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/location/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 35a8f357a24..00000000000 --- a/csharp/test/Ice/location/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Location Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Location Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Location Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/location/generated/sl/.gitignore b/csharp/test/Ice/location/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/location/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/location/location.csproj b/csharp/test/Ice/location/location.csproj deleted file mode 100644 index 22488c63a56..00000000000 --- a/csharp/test/Ice/location/location.csproj +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{1170795D-9EE2-472A-AC4F-18F77255292C}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>location</RootNamespace> - <AssemblyName>location</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>location.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>location.App</SilverlightAppEntry> - <TestPageFileName>locationTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - <InBrowserSettingsFile>Properties\InBrowserSettings.xml</InBrowserSettingsFile> - <RequireInBrowserElevation>false</RequireInBrowserElevation> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\InBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/objects/App.xaml b/csharp/test/Ice/objects/App.xaml deleted file mode 100644 index fe91eece391..00000000000 --- a/csharp/test/Ice/objects/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="objects.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/objects/App.xaml.cs b/csharp/test/Ice/objects/App.xaml.cs deleted file mode 100644 index 36ca81edd5a..00000000000 --- a/csharp/test/Ice/objects/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace objects -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/objects/Properties/AppManifest.xml b/csharp/test/Ice/objects/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/objects/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/objects/Properties/AssemblyInfo.cs b/csharp/test/Ice/objects/Properties/AssemblyInfo.cs deleted file mode 100644 index 60ae7a47a1c..00000000000 --- a/csharp/test/Ice/objects/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("objects")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("objects")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("ea52e19b-9e94-442f-9cf3-0c49e4a37bda")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/objects/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/objects/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 1632458fbdd..00000000000 --- a/csharp/test/Ice/objects/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Objects Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Objects Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Objects Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/objects/generated/sl/.gitignore b/csharp/test/Ice/objects/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/objects/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/objects/objects.csproj b/csharp/test/Ice/objects/objects.csproj deleted file mode 100644 index fa60b0a8a65..00000000000 --- a/csharp/test/Ice/objects/objects.csproj +++ /dev/null @@ -1,123 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{B4C71555-2292-44E2-B5C6-9EB3C92FF308}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>objects</RootNamespace> - <AssemblyName>objects</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>objects.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>objects.App</SilverlightAppEntry> - <TestPageFileName>objectsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="BI.cs" /> - <Compile Include="CI.cs" /> - <Compile Include="DI.cs" /> - <Compile Include="EI.cs" /> - <Compile Include="FI.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="HI.cs" /> - <Compile Include="II.cs" /> - <Compile Include="JI.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/operations/App.xaml b/csharp/test/Ice/operations/App.xaml deleted file mode 100644 index 0e11fa2bbcc..00000000000 --- a/csharp/test/Ice/operations/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="operations.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/operations/App.xaml.cs b/csharp/test/Ice/operations/App.xaml.cs deleted file mode 100644 index 22d23f38fc3..00000000000 --- a/csharp/test/Ice/operations/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace operations -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/operations/Properties/AppManifest.xml b/csharp/test/Ice/operations/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/operations/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/operations/Properties/AssemblyInfo.cs b/csharp/test/Ice/operations/Properties/AssemblyInfo.cs deleted file mode 100644 index f867f174a19..00000000000 --- a/csharp/test/Ice/operations/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("operations")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("operations")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("bda4efb4-5cf6-4ecb-98b1-985ae4e97632")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/operations/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/operations/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index b2ec0136f6d..00000000000 --- a/csharp/test/Ice/operations/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Operations Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Operations Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Operations Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/operations/generated/sl/.gitignore b/csharp/test/Ice/operations/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/operations/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/operations/operations.csproj b/csharp/test/Ice/operations/operations.csproj deleted file mode 100644 index 7f42348ea29..00000000000 --- a/csharp/test/Ice/operations/operations.csproj +++ /dev/null @@ -1,121 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{EEF0327D-EAA7-49B4-80B9-7CC265A7AD96}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>operations</RootNamespace> - <AssemblyName>operations</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>operations.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>operations.App</SilverlightAppEntry> - <TestPageFileName>operationsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="BatchOneways.cs" /> - <Compile Include="BatchOnewaysAMI.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Oneways.cs" /> - <Compile Include="OnewaysAMI.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="Twoways.cs" /> - <Compile Include="TwowaysAMI.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/optional/App.xaml b/csharp/test/Ice/optional/App.xaml deleted file mode 100644 index 58625c9971c..00000000000 --- a/csharp/test/Ice/optional/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="optional.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/optional/App.xaml.cs b/csharp/test/Ice/optional/App.xaml.cs deleted file mode 100644 index 2d136ffd6bf..00000000000 --- a/csharp/test/Ice/optional/App.xaml.cs +++ /dev/null @@ -1,82 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace optional -{ - public partial class App : Application - { - - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/optional/Properties/AppManifest.xml b/csharp/test/Ice/optional/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/optional/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/optional/Properties/AssemblyInfo.cs b/csharp/test/Ice/optional/Properties/AssemblyInfo.cs deleted file mode 100644 index 80ba2c31f5f..00000000000 --- a/csharp/test/Ice/optional/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("optional")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("optional")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("41da247a-a5b9-456e-b692-cbd1e5752275")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/optional/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/optional/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 44c5c79f24f..00000000000 --- a/csharp/test/Ice/optional/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Optional Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Optional Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Optional Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings> diff --git a/csharp/test/Ice/optional/generated/sl/.gitignore b/csharp/test/Ice/optional/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/optional/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/optional/optional.csproj b/csharp/test/Ice/optional/optional.csproj deleted file mode 100644 index afdf28f8959..00000000000 --- a/csharp/test/Ice/optional/optional.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{F271412A-1B69-49A7-BBA7-2EF020ABD6EE}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>optional</RootNamespace> - <AssemblyName>optional</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>optional.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>optional.App</SilverlightAppEntry> - <TestPageFileName>optionalTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" ZerocIce_ExtraOptions="-DSILVERLIGHT" ZerocIce_Streaming="True" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/proxy/App.xaml b/csharp/test/Ice/proxy/App.xaml deleted file mode 100644 index 2659fa28212..00000000000 --- a/csharp/test/Ice/proxy/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="proxy.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/proxy/App.xaml.cs b/csharp/test/Ice/proxy/App.xaml.cs deleted file mode 100644 index ee45cb62b93..00000000000 --- a/csharp/test/Ice/proxy/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace proxy -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/proxy/Properties/AppManifest.xml b/csharp/test/Ice/proxy/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/proxy/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/proxy/Properties/AssemblyInfo.cs b/csharp/test/Ice/proxy/Properties/AssemblyInfo.cs deleted file mode 100644 index 9f26231d081..00000000000 --- a/csharp/test/Ice/proxy/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("proxy")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("proxy")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("967de86e-70d2-4b7e-98cb-191318e47157")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/proxy/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/proxy/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 5de7bf2f0a5..00000000000 --- a/csharp/test/Ice/proxy/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Proxy Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Proxy Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Proxy Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/proxy/generated/sl/.gitignore b/csharp/test/Ice/proxy/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/proxy/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/proxy/proxy.csproj b/csharp/test/Ice/proxy/proxy.csproj deleted file mode 100644 index 3f69368ae79..00000000000 --- a/csharp/test/Ice/proxy/proxy.csproj +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{B558C1F5-CC5A-4D64-848F-BD196AFB1FC7}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>proxy</RootNamespace> - <AssemblyName>proxy</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>proxy.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>proxy.App</SilverlightAppEntry> - <TestPageFileName>proxyTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/retry/App.xaml b/csharp/test/Ice/retry/App.xaml deleted file mode 100644 index e7648e141f0..00000000000 --- a/csharp/test/Ice/retry/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="retry.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/retry/App.xaml.cs b/csharp/test/Ice/retry/App.xaml.cs deleted file mode 100644 index 22b2a2e7e86..00000000000 --- a/csharp/test/Ice/retry/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace retry -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/retry/Properties/AppManifest.xml b/csharp/test/Ice/retry/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/retry/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/retry/Properties/AssemblyInfo.cs b/csharp/test/Ice/retry/Properties/AssemblyInfo.cs deleted file mode 100644 index 1947d791431..00000000000 --- a/csharp/test/Ice/retry/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("retry")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("retry")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("efbdcebb-806c-49d4-94e8-a966e6c5d441")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/retry/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/retry/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 702dfcb98ab..00000000000 --- a/csharp/test/Ice/retry/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Retry Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Retry Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Retry Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/retry/generated/sl/.gitignore b/csharp/test/Ice/retry/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/retry/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/retry/retry.csproj b/csharp/test/Ice/retry/retry.csproj deleted file mode 100644 index f59f368ef5e..00000000000 --- a/csharp/test/Ice/retry/retry.csproj +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{59049797-A1DC-4D8E-BCC2-B2A86C8DFA99}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>retry</RootNamespace> - <AssemblyName>retry</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>retry.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>retry.App</SilverlightAppEntry> - <TestPageFileName>retryTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Instrumentation.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="SystemFailure.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/seqMapping/App.xaml b/csharp/test/Ice/seqMapping/App.xaml deleted file mode 100644 index 7e78267ec52..00000000000 --- a/csharp/test/Ice/seqMapping/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="seqMapping.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/seqMapping/App.xaml.cs b/csharp/test/Ice/seqMapping/App.xaml.cs deleted file mode 100644 index 3a51fb51bf7..00000000000 --- a/csharp/test/Ice/seqMapping/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace seqMapping -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/seqMapping/Properties/AppManifest.xml b/csharp/test/Ice/seqMapping/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/seqMapping/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/seqMapping/Properties/AssemblyInfo.cs b/csharp/test/Ice/seqMapping/Properties/AssemblyInfo.cs deleted file mode 100644 index fe3509c9380..00000000000 --- a/csharp/test/Ice/seqMapping/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("seqMapping")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("seqMapping")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("1f04ea13-1598-4c53-be67-f352328c6bb7")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/seqMapping/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/seqMapping/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 2a61e4dd655..00000000000 --- a/csharp/test/Ice/seqMapping/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Sequence Mapping Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Sequence Mapping Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Sequence Mapping Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/seqMapping/generated/sl/.gitignore b/csharp/test/Ice/seqMapping/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/seqMapping/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/seqMapping/seqMapping.csproj b/csharp/test/Ice/seqMapping/seqMapping.csproj deleted file mode 100644 index ef9db4fb7c5..00000000000 --- a/csharp/test/Ice/seqMapping/seqMapping.csproj +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{3B586590-63D2-48FD-9973-6CB6BA107C27}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>seqMapping</RootNamespace> - <AssemblyName>seqMapping</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>seqMapping.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>seqMapping.App</SilverlightAppEntry> - <TestPageFileName>seqMappingTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="Custom.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="Serializable.cs" /> - <Compile Include="Twoways.cs" /> - <Compile Include="TwowaysAMI.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_ExtraOptions="-DSILVERLIGHT" ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/serialize/App.xaml.cs b/csharp/test/Ice/serialize/App.xaml.cs deleted file mode 100644 index adfb68f9cd5..00000000000 --- a/csharp/test/Ice/serialize/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace serialize -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/serialize/Properties/AssemblyInfo.cs b/csharp/test/Ice/serialize/Properties/AssemblyInfo.cs deleted file mode 100644 index b52dc1a59ce..00000000000 --- a/csharp/test/Ice/serialize/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("serialize")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("serialize")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("bd19b1a3-70fe-42b7-a833-4d9daa9e5fab")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/serialize/generated/sl/.gitignore b/csharp/test/Ice/serialize/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/serialize/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/serialize/serialize.csproj b/csharp/test/Ice/serialize/serialize.csproj deleted file mode 100644 index facfd8151ae..00000000000 --- a/csharp/test/Ice/serialize/serialize.csproj +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{097C99BD-4A43-4673-90BE-B183A3F75CEF}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>serialize</RootNamespace> - <AssemblyName>serialize</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>serialize.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>serialize.App</SilverlightAppEntry> - <TestPageFileName>serializeTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - <InBrowserSettingsFile>Properties\InBrowserSettings.xml</InBrowserSettingsFile> - <RequireInBrowserElevation>false</RequireInBrowserElevation> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\InBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_ExtraOptions="-DSILVERLIGHT" ZerocIce_Enabled="True" ZerocIce_ProjectVersion="1" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project> diff --git a/csharp/test/Ice/servantLocator/App.xaml b/csharp/test/Ice/servantLocator/App.xaml deleted file mode 100644 index f879cdda87b..00000000000 --- a/csharp/test/Ice/servantLocator/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="servantLocator.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/servantLocator/App.xaml.cs b/csharp/test/Ice/servantLocator/App.xaml.cs deleted file mode 100644 index ccb4ce71426..00000000000 --- a/csharp/test/Ice/servantLocator/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace servantLocator -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/servantLocator/Properties/AppManifest.xml b/csharp/test/Ice/servantLocator/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/servantLocator/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/servantLocator/Properties/AssemblyInfo.cs b/csharp/test/Ice/servantLocator/Properties/AssemblyInfo.cs deleted file mode 100644 index 156a8b41014..00000000000 --- a/csharp/test/Ice/servantLocator/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("servantLocator")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("servantLocator")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("79b1229a-4d32-47d0-b513-b8c99b869470")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/servantLocator/Properties/InBrowserSettings.xml b/csharp/test/Ice/servantLocator/Properties/InBrowserSettings.xml deleted file mode 100644 index 56716508bdb..00000000000 --- a/csharp/test/Ice/servantLocator/Properties/InBrowserSettings.xml +++ /dev/null @@ -1,5 +0,0 @@ -<InBrowserSettings> - <InBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </InBrowserSettings.SecuritySettings> -</InBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/servantLocator/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/servantLocator/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 3edff0640e4..00000000000 --- a/csharp/test/Ice/servantLocator/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Servant Locator Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Servant Locator Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Servant Locator Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/servantLocator/generated/sl/.gitignore b/csharp/test/Ice/servantLocator/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/servantLocator/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/servantLocator/servantLocator.csproj b/csharp/test/Ice/servantLocator/servantLocator.csproj deleted file mode 100644 index 0d1537698d6..00000000000 --- a/csharp/test/Ice/servantLocator/servantLocator.csproj +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{E2F1D989-CA09-4A83-9511-7C03FD13E5D1}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>servantLocator</RootNamespace> - <AssemblyName>servantLocator</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>servantLocator.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>servantLocator.App</SilverlightAppEntry> - <TestPageFileName>servantLocatorTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - <InBrowserSettingsFile>Properties\InBrowserSettings.xml</InBrowserSettingsFile> - <RequireInBrowserElevation>true</RequireInBrowserElevation> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup> - <None Include="Properties\InBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/slicing/exceptions/App.xaml b/csharp/test/Ice/slicing/exceptions/App.xaml deleted file mode 100644 index 41e13a49e32..00000000000 --- a/csharp/test/Ice/slicing/exceptions/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="slicingExceptions.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/slicing/exceptions/App.xaml.cs b/csharp/test/Ice/slicing/exceptions/App.xaml.cs deleted file mode 100644 index e4671a453fd..00000000000 --- a/csharp/test/Ice/slicing/exceptions/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace slicingExceptions -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/slicing/exceptions/Properties/AppManifest.xml b/csharp/test/Ice/slicing/exceptions/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/slicing/exceptions/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/slicing/exceptions/Properties/AssemblyInfo.cs b/csharp/test/Ice/slicing/exceptions/Properties/AssemblyInfo.cs deleted file mode 100644 index 98389324286..00000000000 --- a/csharp/test/Ice/slicing/exceptions/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("exceptions")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("exceptions")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("a7af9caf-0691-42f1-be3c-e0701303e006")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/slicing/exceptions/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/slicing/exceptions/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 26a1a00e1d6..00000000000 --- a/csharp/test/Ice/slicing/exceptions/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Slicing Exceptions Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Slicing Exceptions Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Slicing Exceptions Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/slicing/exceptions/exceptions.csproj b/csharp/test/Ice/slicing/exceptions/exceptions.csproj deleted file mode 100644 index d9e0faed872..00000000000 --- a/csharp/test/Ice/slicing/exceptions/exceptions.csproj +++ /dev/null @@ -1,117 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{DD327892-C079-4209-863D-855E32A4C379}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>exceptions</RootNamespace> - <AssemblyName>exceptions</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>exceptions.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>slicingExceptions.App</SilverlightAppEntry> - <TestPageFileName>slicingExceptionsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\ClientPrivate.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="ClientPrivate.ice" /> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_VerboseLevel="1" ZerocIce_IncludePath="." ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/slicing/exceptions/generated/sl/.gitignore b/csharp/test/Ice/slicing/exceptions/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/slicing/exceptions/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/slicing/objects/App.xaml b/csharp/test/Ice/slicing/objects/App.xaml deleted file mode 100644 index 3d9cab394e5..00000000000 --- a/csharp/test/Ice/slicing/objects/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="slicingObjects.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/slicing/objects/App.xaml.cs b/csharp/test/Ice/slicing/objects/App.xaml.cs deleted file mode 100644 index 5c93c0d2437..00000000000 --- a/csharp/test/Ice/slicing/objects/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace slicingObjects -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/slicing/objects/Properties/AppManifest.xml b/csharp/test/Ice/slicing/objects/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/slicing/objects/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/slicing/objects/Properties/AssemblyInfo.cs b/csharp/test/Ice/slicing/objects/Properties/AssemblyInfo.cs deleted file mode 100644 index 1cbcee77599..00000000000 --- a/csharp/test/Ice/slicing/objects/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("objects")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("objects")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("a8682ac6-10f9-4999-9381-5f70def73c7a")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/slicing/objects/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/slicing/objects/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index fa698ad4f34..00000000000 --- a/csharp/test/Ice/slicing/objects/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Slicing Objects Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Slicing Objects Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Slicing Objects Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/slicing/objects/generated/sl/.gitignore b/csharp/test/Ice/slicing/objects/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/slicing/objects/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/slicing/objects/objects.csproj b/csharp/test/Ice/slicing/objects/objects.csproj deleted file mode 100644 index 161f5a5dce3..00000000000 --- a/csharp/test/Ice/slicing/objects/objects.csproj +++ /dev/null @@ -1,119 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{0FB1D189-5BA6-4EE0-BAAF-E9EE0AFE6D3D}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>objects</RootNamespace> - <AssemblyName>objects</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>objects.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>slicingObjects.App</SilverlightAppEntry> - <TestPageFileName>slicingObjectsTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\ClientPrivate.cs" /> - <Compile Include="generated\sl\Forward.cs" /> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="ClientPrivate.ice" /> - <None Include="Forward.ice" /> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_IncludePath="." ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/stream/App.xaml b/csharp/test/Ice/stream/App.xaml deleted file mode 100644 index 759c0596ab2..00000000000 --- a/csharp/test/Ice/stream/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="stream.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/stream/App.xaml.cs b/csharp/test/Ice/stream/App.xaml.cs deleted file mode 100644 index ffc0536058e..00000000000 --- a/csharp/test/Ice/stream/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace stream -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if (!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch (Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/stream/Properties/AppManifest.xml b/csharp/test/Ice/stream/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/stream/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/stream/Properties/AssemblyInfo.cs b/csharp/test/Ice/stream/Properties/AssemblyInfo.cs deleted file mode 100644 index 3c45415cce6..00000000000 --- a/csharp/test/Ice/stream/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("stream")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("stream")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("bd19b1a3-70fe-42b7-a833-4d9daa9e5fab")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/stream/Properties/InBrowserSettings.xml b/csharp/test/Ice/stream/Properties/InBrowserSettings.xml deleted file mode 100644 index 0c41b0763ad..00000000000 --- a/csharp/test/Ice/stream/Properties/InBrowserSettings.xml +++ /dev/null @@ -1,5 +0,0 @@ -<InBrowserSettings> - <InBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="NotRequired" /> - </InBrowserSettings.SecuritySettings> -</InBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/stream/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/stream/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index 5b5d9dfcaff..00000000000 --- a/csharp/test/Ice/stream/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Stream Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>stream Application on your desktop; at home, at work or on the go.</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Stream Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/stream/generated/sl/.gitignore b/csharp/test/Ice/stream/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/stream/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/stream/stream.csproj b/csharp/test/Ice/stream/stream.csproj deleted file mode 100644 index de53ca8adef..00000000000 --- a/csharp/test/Ice/stream/stream.csproj +++ /dev/null @@ -1,120 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{21950547-9EDD-48D9-8311-8EBA541524C9}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>stream</RootNamespace> - <AssemblyName>stream</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>stream.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>stream.App</SilverlightAppEntry> - <TestPageFileName>streamTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - <InBrowserSettingsFile>Properties\InBrowserSettings.xml</InBrowserSettingsFile> - <RequireInBrowserElevation>false</RequireInBrowserElevation> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\InBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_OutputDir=".\generated\sl" ZerocIce_ProjectVersion="3.6" ZerocIce_Enabled="True" ZerocIce_Streaming="True" ZerocIce_ExtraOptions="-DSILVERLIGHT" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/Ice/timeout/App.xaml b/csharp/test/Ice/timeout/App.xaml deleted file mode 100644 index 43a28c6ba67..00000000000 --- a/csharp/test/Ice/timeout/App.xaml +++ /dev/null @@ -1,8 +0,0 @@ -<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - x:Class="timeout.App" - > - <Application.Resources> - - </Application.Resources> -</Application> diff --git a/csharp/test/Ice/timeout/App.xaml.cs b/csharp/test/Ice/timeout/App.xaml.cs deleted file mode 100644 index 8ee917dfe47..00000000000 --- a/csharp/test/Ice/timeout/App.xaml.cs +++ /dev/null @@ -1,81 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; - -namespace timeout -{ - public partial class App : Application - { - public App() - { - Deployment.Current.Dispatcher.BeginInvoke(delegate() - { - Current.MainWindow.WindowState = WindowState.Minimized; - Current.MainWindow.Visibility = Visibility.Collapsed; - }); - this.Startup += this.Application_Startup; - this.Exit += this.Application_Exit; - this.UnhandledException += this.Application_UnhandledException; - InitializeComponent(); - } - - private void Application_Startup(object sender, StartupEventArgs e) - { - TestCommon.TestApp app = new AllTests(); - app.main(); - } - - private void Application_Exit(object sender, EventArgs e) - { - - } - - private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) - { - // If the app is running outside of the debugger then report the exception using - // the browser's exception mechanism. On IE this will display it a yellow alert - // icon in the status bar and Firefox will display a script error. - if(!System.Diagnostics.Debugger.IsAttached) - { - - // NOTE: This will allow the application to continue running after an exception has been thrown - // but not handled. - // For production applications this error handling should be replaced with something that will - // report the error to the website and stop the application. - e.Handled = true; - Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); }); - } - } - - private void ReportErrorToDOM(ApplicationUnhandledExceptionEventArgs e) - { - try - { - string errorMsg = e.ExceptionObject.Message + e.ExceptionObject.StackTrace; - errorMsg = errorMsg.Replace('"', '\'').Replace("\r\n", @"\n"); - - System.Windows.Browser.HtmlPage.Window.Eval("throw new Error(\"Unhandled Error in Silverlight Application " + errorMsg + "\");"); - } - catch(Exception) - { - } - } - } -} diff --git a/csharp/test/Ice/timeout/Properties/AppManifest.xml b/csharp/test/Ice/timeout/Properties/AppManifest.xml deleted file mode 100644 index 6712a117839..00000000000 --- a/csharp/test/Ice/timeout/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ -<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -> - <Deployment.Parts> - </Deployment.Parts> -</Deployment> diff --git a/csharp/test/Ice/timeout/Properties/AssemblyInfo.cs b/csharp/test/Ice/timeout/Properties/AssemblyInfo.cs deleted file mode 100644 index 7ac083cf255..00000000000 --- a/csharp/test/Ice/timeout/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,44 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("timeout")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("ZeroC, Inc.")] -[assembly: AssemblyProduct("timeout")] -[assembly: AssemblyCopyright("Copyright © 2012-2015 ZeroC, Inc.")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f47eb28d-54ef-4285-8441-a55a39eb749b")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("3.6.0")] -[assembly: AssemblyFileVersion("3.6.0")] diff --git a/csharp/test/Ice/timeout/Properties/OutOfBrowserSettings.xml b/csharp/test/Ice/timeout/Properties/OutOfBrowserSettings.xml deleted file mode 100644 index d542ec96e49..00000000000 --- a/csharp/test/Ice/timeout/Properties/OutOfBrowserSettings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<OutOfBrowserSettings ShortName="Timeout Test" EnableGPUAcceleration="False" ShowInstallMenuItem="True"> - <OutOfBrowserSettings.Blurb>Timeout Test</OutOfBrowserSettings.Blurb> - <OutOfBrowserSettings.WindowSettings> - <WindowSettings Title="Timeout Test" Height="1" Width="1" Top="0" Left="0" WindowStartupLocation="Manual" /> - </OutOfBrowserSettings.WindowSettings> - <OutOfBrowserSettings.SecuritySettings> - <SecuritySettings ElevatedPermissions="Required" /> - </OutOfBrowserSettings.SecuritySettings> - <OutOfBrowserSettings.Icons /> -</OutOfBrowserSettings>
\ No newline at end of file diff --git a/csharp/test/Ice/timeout/generated/sl/.gitignore b/csharp/test/Ice/timeout/generated/sl/.gitignore deleted file mode 100644 index 39af5887579..00000000000 --- a/csharp/test/Ice/timeout/generated/sl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -# Dummy file, so that git retains this otherwise empty directory. diff --git a/csharp/test/Ice/timeout/timeout.csproj b/csharp/test/Ice/timeout/timeout.csproj deleted file mode 100644 index cc61307cc31..00000000000 --- a/csharp/test/Ice/timeout/timeout.csproj +++ /dev/null @@ -1,116 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{86F3AD27-AC8E-417F-ADCF-461AE33870A6}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>timeout</RootNamespace> - <AssemblyName>timeout</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>true</SilverlightApplication> - <SupportedCultures> - </SupportedCultures> - <XapOutputs>true</XapOutputs> - <GenerateSilverlightManifest>true</GenerateSilverlightManifest> - <XapFilename>timeout.xap</XapFilename> - <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate> - <SilverlightAppEntry>timeout.App</SilverlightAppEntry> - <TestPageFileName>timeoutTestPage.html</TestPageFileName> - <CreateTestPage>true</CreateTestPage> - <ValidateXaml>true</ValidateXaml> - <EnableOutOfBrowser>true</EnableOutOfBrowser> - <OutOfBrowserSettingsFile>Properties\OutOfBrowserSettings.xml</OutOfBrowserSettingsFile> - <UsePlatformExtensions>false</UsePlatformExtensions> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - <LinkedServerProject> - </LinkedServerProject> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>obj\sl\</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Net" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="AllTests.cs" /> - <Compile Include="App.xaml.cs"> - <DependentUpon>App.xaml</DependentUpon> - </Compile> - <Compile Include="generated\sl\Test.cs" /> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="TimeoutI.cs" /> - </ItemGroup> - <ItemGroup> - <ApplicationDefinition Include="App.xaml"> - <SubType>Designer</SubType> - <Generator>MSBuild:Compile</Generator> - </ApplicationDefinition> - </ItemGroup> - <ItemGroup> - <None Include="Properties\AppManifest.xml" /> - <None Include="Test.ice" /> - </ItemGroup> - <ItemGroup> - <ProjectReference Include="..\..\TestCommon\TestCommon.csproj"> - <Project>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</Project> - <Name>TestCommon</Name> - </ProjectReference> - </ItemGroup> - <ItemGroup> - <None Include="Properties\OutOfBrowserSettings.xml" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" ZerocIce_OutputDir=".\generated\sl" /> - </VisualStudio> - </ProjectExtensions> -</Project>
\ No newline at end of file diff --git a/csharp/test/TestCommon/TestCommon.csproj b/csharp/test/TestCommon/TestCommon.csproj deleted file mode 100644 index fcf6fa776f9..00000000000 --- a/csharp/test/TestCommon/TestCommon.csproj +++ /dev/null @@ -1,78 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup> - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> - <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{09CE99C4-5118-4EFF-B99D-6E0C160E4413}</ProjectGuid> - <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> - <OutputType>Library</OutputType> - <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>TestCommon</RootNamespace> - <AssemblyName>TestCommon</AssemblyName> - <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier> - <TargetFrameworkVersion>v5.0</TargetFrameworkVersion> - <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion> - <SilverlightApplication>false</SilverlightApplication> - <ValidateXaml>true</ValidateXaml> - <ThrowErrorsInValidation>true</ThrowErrorsInValidation> - </PropertyGroup> - <!-- This property group is only here to support building this project using the - MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs - to set the TargetFrameworkVersion to v3.5 --> - <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'"> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <DebugSymbols>true</DebugSymbols> - <DebugType>full</DebugType> - <Optimize>false</Optimize> - <OutputPath>.</OutputPath> - <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> - <DebugType>pdbonly</DebugType> - <Optimize>true</Optimize> - <OutputPath>.</OutputPath> - <DefineConstants>TRACE;SILVERLIGHT</DefineConstants> - <NoStdLib>true</NoStdLib> - <NoConfig>true</NoConfig> - <ErrorReport>prompt</ErrorReport> - <WarningLevel>4</WarningLevel> - </PropertyGroup> - <ItemGroup> - <Reference Include="Ice, Version=3.6.0.0, Culture=neutral, processorArchitecture=MSIL" /> - <Reference Include="mscorlib" /> - <Reference Include="System.Windows" /> - <Reference Include="system" /> - <Reference Include="System.Core" /> - <Reference Include="System.Xml" /> - <Reference Include="System.Net" /> - <Reference Include="System.Windows.Browser" /> - </ItemGroup> - <ItemGroup> - <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="TestApp.cs" /> - </ItemGroup> - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.CSharp.targets" /> - <ProjectExtensions> - <VisualStudio> - <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"> - <SilverlightProjectProperties /> - </FlavorProperties> - <UserProperties ZerocIce_Enabled="True" ZerocIce_ProjectVersion="3.6" /> - </VisualStudio> - </ProjectExtensions> - <!-- 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. - <Target Name="BeforeBuild"> - </Target> - <Target Name="AfterBuild"> - </Target> - --> -</Project>
\ No newline at end of file |