diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..b96906b5
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,41 @@
+name: Build WPF Samples
+
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+
+jobs:
+ build:
+ # .NET Framework applications must be built on a Windows runner.
+ runs-on: windows-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v2
+ with:
+ msbuild-architecture: x64
+
+ - name: Setup NuGet
+ uses: NuGet/setup-nuget@v2
+
+ - name: Restore NuGet packages
+ run: nuget restore Examples/Infragistics.Samples.WPF.sln
+
+ - name: Build the solution
+ run: |
+ $outputDir = "$env:GITHUB_WORKSPACE\build_output"
+ Write-Host "Building to specific directory: $outputDir"
+ msbuild Examples/Infragistics.Samples.WPF.sln /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=$outputDir\
+
+ - name: Upload the artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: wpf-app-release
+ path: build_output
diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml
new file mode 100644
index 00000000..b7b61a1b
--- /dev/null
+++ b/.github/workflows/publish-release.yml
@@ -0,0 +1,58 @@
+name: Create Release and Upload Artifact
+
+on:
+ push:
+ tags:
+ - 'v*.*.*' # Trigger this workflow only when a new tag is pushed
+
+jobs:
+ build_and_release:
+ runs-on: windows-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v2
+ with:
+ msbuild-architecture: x64
+
+ - name: Setup NuGet
+ uses: NuGet/setup-nuget@v2
+
+ - name: Restore NuGet packages
+ run: nuget restore Examples/Infragistics.Samples.WPF.sln
+
+ - name: Build the solution with forced output directory
+ run: |
+ $outputDir = "$env:GITHUB_WORKSPACE\build_output"
+ Write-Host "Building to specific directory: $outputDir"
+ msbuild Examples/Infragistics.Samples.WPF.sln /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=$outputDir\
+
+ - name: Zip the build output
+ run: |
+ $outputPath = "$env:GITHUB_WORKSPACE\build_output"
+ Compress-Archive -Path "$outputPath\*" -DestinationPath "wpf-app-release.zip" -Force
+ Write-Host "Zipping complete."
+
+ - name: Create Release
+ id: create_release
+ uses: actions/create-release@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ tag_name: ${{ github.ref }}
+ release_name: Release ${{ github.ref }}
+ draft: false
+ prerelease: false
+
+ - name: Upload Release Asset
+ uses: actions/upload-release-asset@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
+ asset_path: ./wpf-app-release.zip
+ asset_name: wpf-app-release.zip
+ asset_content_type: application/zip
diff --git a/Examples/IGBarcode/Properties/AssemblyInfo.cs b/Examples/IGBarcode/Properties/AssemblyInfo.cs
index bfc87af1..1d23d756 100644
--- a/Examples/IGBarcode/Properties/AssemblyInfo.cs
+++ b/Examples/IGBarcode/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGBarcode")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGBarcodeReader/Properties/AssemblyInfo.cs b/Examples/IGBarcodeReader/Properties/AssemblyInfo.cs
index 154ce006..225aaf52 100644
--- a/Examples/IGBarcodeReader/Properties/AssemblyInfo.cs
+++ b/Examples/IGBarcodeReader/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGBarcodeReader")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGBulletGraph/Properties/AssemblyInfo.cs b/Examples/IGBulletGraph/Properties/AssemblyInfo.cs
index f91416c7..bcc1d239 100644
--- a/Examples/IGBulletGraph/Properties/AssemblyInfo.cs
+++ b/Examples/IGBulletGraph/Properties/AssemblyInfo.cs
@@ -1,9 +1,10 @@
using System.Reflection;
+using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Samples Project Templates")]
@@ -17,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGBusyIndicator/Properties/AssemblyInfo.cs b/Examples/IGBusyIndicator/Properties/AssemblyInfo.cs
index ab105b1f..f928369f 100644
--- a/Examples/IGBusyIndicator/Properties/AssemblyInfo.cs
+++ b/Examples/IGBusyIndicator/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Runtime.InteropServices;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGBusyIndicator")]
@@ -17,8 +17,8 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+// 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)]
diff --git a/Examples/IGCalculationManager/Properties/AssemblyInfo.cs b/Examples/IGCalculationManager/Properties/AssemblyInfo.cs
index 1fc2c99c..c6fa281b 100644
--- a/Examples/IGCalculationManager/Properties/AssemblyInfo.cs
+++ b/Examples/IGCalculationManager/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGCalculationManager")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGCalendar/Properties/AssemblyInfo.cs b/Examples/IGCalendar/Properties/AssemblyInfo.cs
index 69defbfa..5c6f1d95 100644
--- a/Examples/IGCalendar/Properties/AssemblyInfo.cs
+++ b/Examples/IGCalendar/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGCalendar")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGCarouselListBox/Properties/AssemblyInfo.cs b/Examples/IGCarouselListBox/Properties/AssemblyInfo.cs
index 217a66f7..af208499 100644
--- a/Examples/IGCarouselListBox/Properties/AssemblyInfo.cs
+++ b/Examples/IGCarouselListBox/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGCarouselListBox")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGCarouselPanel/Properties/AssemblyInfo.cs b/Examples/IGCarouselPanel/Properties/AssemblyInfo.cs
index 93c96d22..34e15c3e 100644
--- a/Examples/IGCarouselPanel/Properties/AssemblyInfo.cs
+++ b/Examples/IGCarouselPanel/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGCarouselPanel")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGColorPicker/Properties/AssemblyInfo.cs b/Examples/IGColorPicker/Properties/AssemblyInfo.cs
index 27e0ca61..72dce60f 100644
--- a/Examples/IGColorPicker/Properties/AssemblyInfo.cs
+++ b/Examples/IGColorPicker/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGColorPicker")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGComboEditor/Properties/AssemblyInfo.cs b/Examples/IGComboEditor/Properties/AssemblyInfo.cs
index 6b3718cd..cede0f26 100644
--- a/Examples/IGComboEditor/Properties/AssemblyInfo.cs
+++ b/Examples/IGComboEditor/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGComboEditor")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGCompression/Properties/AssemblyInfo.cs b/Examples/IGCompression/Properties/AssemblyInfo.cs
index 2f8738d8..4c08c189 100644
--- a/Examples/IGCompression/Properties/AssemblyInfo.cs
+++ b/Examples/IGCompression/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGCompression.SL")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGContextMenu/Properties/AssemblyInfo.cs b/Examples/IGContextMenu/Properties/AssemblyInfo.cs
index 9a14f4b3..26cdff48 100644
--- a/Examples/IGContextMenu/Properties/AssemblyInfo.cs
+++ b/Examples/IGContextMenu/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGContextMenu")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataCards/Properties/AssemblyInfo.cs b/Examples/IGDataCards/Properties/AssemblyInfo.cs
index f53a355a..64d4e1c8 100644
--- a/Examples/IGDataCards/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataCards/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGDataCards")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataCarousel/Properties/AssemblyInfo.cs b/Examples/IGDataCarousel/Properties/AssemblyInfo.cs
index 2585aa97..c66bde74 100644
--- a/Examples/IGDataCarousel/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataCarousel/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGDataCarousel")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataChart/Properties/AssemblyInfo.cs b/Examples/IGDataChart/Properties/AssemblyInfo.cs
index f9770308..b4a0183b 100644
--- a/Examples/IGDataChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataChart/Properties/AssemblyInfo.cs
@@ -16,8 +16,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs b/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs
index 2020b90f..877dcb08 100644
--- a/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs
+++ b/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs
@@ -1905,6 +1905,15 @@ public static string XWDC_CategorySeries_RangeColumnSeries {
}
}
+ ///
+ /// Looks up a localized string similar to Range Bar Series.
+ ///
+ public static string XWDC_CategorySeries_RangeBarSeries {
+ get {
+ return ResourceManager.GetString("XWDC_CategorySeries_RangeBarSeries", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Spline Area Series.
///
diff --git a/Examples/IGDataChart/Resources/DataChartStrings.ja.resx b/Examples/IGDataChart/Resources/DataChartStrings.ja.resx
index fe9b82c2..dfe53bfe 100644
--- a/Examples/IGDataChart/Resources/DataChartStrings.ja.resx
+++ b/Examples/IGDataChart/Resources/DataChartStrings.ja.resx
@@ -250,6 +250,10 @@
範囲列シリーズ
Category Series type
+
+ 範囲棒シリーズ
+ Category Series type
+
スプライン領域シリーズ
Category Series type
@@ -1900,4 +1904,4 @@
ハイライト値
-
\ No newline at end of file
+
diff --git a/Examples/IGDataChart/Resources/DataChartStrings.resx b/Examples/IGDataChart/Resources/DataChartStrings.resx
index bf5528ef..65c1c66e 100644
--- a/Examples/IGDataChart/Resources/DataChartStrings.resx
+++ b/Examples/IGDataChart/Resources/DataChartStrings.resx
@@ -224,6 +224,10 @@
Range Column Series
Category Series type
+
+ Range Bar Series
+ Category Series type
+
Spline Area Series
Category Series type
@@ -1967,4 +1971,4 @@
Highlight Value
-
\ No newline at end of file
+
diff --git a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml
index 7b9af655..19cc9984 100644
--- a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml
+++ b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml
@@ -427,6 +427,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs
index 73a3bc0c..66d0a5c2 100644
--- a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs
+++ b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs
@@ -32,6 +32,7 @@ private void InitializeSample()
_vm.AddSample(this.StepAreaChart, DataChartStrings.XWDC_CategorySeries_StepAreaSeries);
_vm.AddSample(this.RangeColumnChart, DataChartStrings.XWDC_CategorySeries_RangeColumnSeries);
_vm.AddSample(this.RangeAreaChart, DataChartStrings.XWDC_CategorySeries_RangeAreaSeries);
+ _vm.AddSample(this.RangeBarChart, DataChartStrings.XWDC_CategorySeries_RangeBarSeries);
_vm.AddSample(this.WaterfallChart, DataChartStrings.XWDC_CategorySeries_WaterfallSeries);
_vm.AddSample(this.BarChart, DataChartStrings.XWDC_CategorySeries_BarSeries);
diff --git a/Examples/IGDataGrid/Properties/AssemblyInfo.cs b/Examples/IGDataGrid/Properties/AssemblyInfo.cs
index e58c9b4e..310da3ea 100644
--- a/Examples/IGDataGrid/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataGrid/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGDataGrid")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataPieChart/Properties/AssemblyInfo.cs b/Examples/IGDataPieChart/Properties/AssemblyInfo.cs
index 5096810a..fab07860 100644
--- a/Examples/IGDataPieChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataPieChart/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGDataPieChart")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataPresenter/Properties/AssemblyInfo.cs b/Examples/IGDataPresenter/Properties/AssemblyInfo.cs
index 1faae456..271ef4a2 100644
--- a/Examples/IGDataPresenter/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataPresenter/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGDataPresenter")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDataTree/Properties/AssemblyInfo.cs b/Examples/IGDataTree/Properties/AssemblyInfo.cs
index 87e773a1..a5a7a457 100644
--- a/Examples/IGDataTree/Properties/AssemblyInfo.cs
+++ b/Examples/IGDataTree/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGDataTree")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDiagram/Properties/AssemblyInfo.cs b/Examples/IGDiagram/Properties/AssemblyInfo.cs
index 7e3122d6..cc55dc2b 100644
--- a/Examples/IGDiagram/Properties/AssemblyInfo.cs
+++ b/Examples/IGDiagram/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGDiagram")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGDialogWindow/Properties/AssemblyInfo.cs b/Examples/IGDialogWindow/Properties/AssemblyInfo.cs
index 834396c1..3d01ba73 100644
--- a/Examples/IGDialogWindow/Properties/AssemblyInfo.cs
+++ b/Examples/IGDialogWindow/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGDialogWindow")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDockManager/Properties/AssemblyInfo.cs b/Examples/IGDockManager/Properties/AssemblyInfo.cs
index 80f5433a..ebf10802 100644
--- a/Examples/IGDockManager/Properties/AssemblyInfo.cs
+++ b/Examples/IGDockManager/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGDockManager")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGDoughnutChart/Properties/AssemblyInfo.cs b/Examples/IGDoughnutChart/Properties/AssemblyInfo.cs
index 44374dd2..1326bbe9 100644
--- a/Examples/IGDoughnutChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGDoughnutChart/Properties/AssemblyInfo.cs
@@ -16,15 +16,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGDragDropFramework/Properties/AssemblyInfo.cs b/Examples/IGDragDropFramework/Properties/AssemblyInfo.cs
index 89a10402..0aab23a6 100644
--- a/Examples/IGDragDropFramework/Properties/AssemblyInfo.cs
+++ b/Examples/IGDragDropFramework/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGDragDropFramework")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGEditors/Properties/AssemblyInfo.cs b/Examples/IGEditors/Properties/AssemblyInfo.cs
index f3c68067..4dc6cb63 100644
--- a/Examples/IGEditors/Properties/AssemblyInfo.cs
+++ b/Examples/IGEditors/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGEditors")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGExcel/Properties/AssemblyInfo.cs b/Examples/IGExcel/Properties/AssemblyInfo.cs
index 03e332e5..7b193104 100644
--- a/Examples/IGExcel/Properties/AssemblyInfo.cs
+++ b/Examples/IGExcel/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGExcel")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGFormulaEditor/Properties/AssemblyInfo.cs b/Examples/IGFormulaEditor/Properties/AssemblyInfo.cs
index 1d9ca666..76d057d2 100644
--- a/Examples/IGFormulaEditor/Properties/AssemblyInfo.cs
+++ b/Examples/IGFormulaEditor/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGFormulaEditor")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGFunnelChart/Properties/AssemblyInfo.cs b/Examples/IGFunnelChart/Properties/AssemblyInfo.cs
index 27b985e7..ea31cf37 100644
--- a/Examples/IGFunnelChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGFunnelChart/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGFunnelChart")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGGantt/Properties/AssemblyInfo.cs b/Examples/IGGantt/Properties/AssemblyInfo.cs
index 8b1e30bf..3ca63e6f 100644
--- a/Examples/IGGantt/Properties/AssemblyInfo.cs
+++ b/Examples/IGGantt/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGGantt")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGGeographicMap/Properties/AssemblyInfo.cs b/Examples/IGGeographicMap/Properties/AssemblyInfo.cs
index 0b5caf53..45e6b5f2 100644
--- a/Examples/IGGeographicMap/Properties/AssemblyInfo.cs
+++ b/Examples/IGGeographicMap/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGGeographicMap")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGGrid/Properties/AssemblyInfo.cs b/Examples/IGGrid/Properties/AssemblyInfo.cs
index 3961a73e..8adbe4c3 100644
--- a/Examples/IGGrid/Properties/AssemblyInfo.cs
+++ b/Examples/IGGrid/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGGrid")]
@@ -19,8 +19,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGHtmlViewer/Properties/AssemblyInfo.cs b/Examples/IGHtmlViewer/Properties/AssemblyInfo.cs
index 8f0c94ee..02afeb7e 100644
--- a/Examples/IGHtmlViewer/Properties/AssemblyInfo.cs
+++ b/Examples/IGHtmlViewer/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGHtmlViewer")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGInputs/Properties/AssemblyInfo.cs b/Examples/IGInputs/Properties/AssemblyInfo.cs
index bf53f2d7..943ca0ee 100644
--- a/Examples/IGInputs/Properties/AssemblyInfo.cs
+++ b/Examples/IGInputs/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGInputs")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGLinearGauge/Properties/AssemblyInfo.cs b/Examples/IGLinearGauge/Properties/AssemblyInfo.cs
index f91416c7..bcc1d239 100644
--- a/Examples/IGLinearGauge/Properties/AssemblyInfo.cs
+++ b/Examples/IGLinearGauge/Properties/AssemblyInfo.cs
@@ -1,9 +1,10 @@
using System.Reflection;
+using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Samples Project Templates")]
@@ -17,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGMap/Properties/AssemblyInfo.cs b/Examples/IGMap/Properties/AssemblyInfo.cs
index 0456e145..c1eb7469 100644
--- a/Examples/IGMap/Properties/AssemblyInfo.cs
+++ b/Examples/IGMap/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGMap")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGMath/Properties/AssemblyInfo.cs b/Examples/IGMath/Properties/AssemblyInfo.cs
index ea8770b8..cd52ecd2 100644
--- a/Examples/IGMath/Properties/AssemblyInfo.cs
+++ b/Examples/IGMath/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGMath")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGMenu/Properties/AssemblyInfo.cs b/Examples/IGMenu/Properties/AssemblyInfo.cs
index 4eef787f..0e202741 100644
--- a/Examples/IGMenu/Properties/AssemblyInfo.cs
+++ b/Examples/IGMenu/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGMenu")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGMonthCalendar/Properties/AssemblyInfo.cs b/Examples/IGMonthCalendar/Properties/AssemblyInfo.cs
index 25382386..eddb01f2 100644
--- a/Examples/IGMonthCalendar/Properties/AssemblyInfo.cs
+++ b/Examples/IGMonthCalendar/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGMonthCalendar")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGMultiColumnComboEditor/Properties/AssemblyInfo.cs b/Examples/IGMultiColumnComboEditor/Properties/AssemblyInfo.cs
index abb6edf3..2075d07e 100644
--- a/Examples/IGMultiColumnComboEditor/Properties/AssemblyInfo.cs
+++ b/Examples/IGMultiColumnComboEditor/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGMultiColumnComboEditor")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGNetworkNode/Properties/AssemblyInfo.cs b/Examples/IGNetworkNode/Properties/AssemblyInfo.cs
index 5dcdf5fc..c1165274 100644
--- a/Examples/IGNetworkNode/Properties/AssemblyInfo.cs
+++ b/Examples/IGNetworkNode/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGNetworkNode")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGOldBulletGraph/Properties/AssemblyInfo.cs b/Examples/IGOldBulletGraph/Properties/AssemblyInfo.cs
index 9d97b119..b949b1f0 100644
--- a/Examples/IGOldBulletGraph/Properties/AssemblyInfo.cs
+++ b/Examples/IGOldBulletGraph/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGBulletGraph")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGOrgChart/Properties/AssemblyInfo.cs b/Examples/IGOrgChart/Properties/AssemblyInfo.cs
index c4b4b23a..271621ea 100644
--- a/Examples/IGOrgChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGOrgChart/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGOrgChart")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGOutlookBar/Properties/AssemblyInfo.cs b/Examples/IGOutlookBar/Properties/AssemblyInfo.cs
index e3676e56..92d29440 100644
--- a/Examples/IGOutlookBar/Properties/AssemblyInfo.cs
+++ b/Examples/IGOutlookBar/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGOutlookBar")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGPersistenceFramework/Properties/AssemblyInfo.cs b/Examples/IGPersistenceFramework/Properties/AssemblyInfo.cs
index ed904cb2..7ee53eef 100644
--- a/Examples/IGPersistenceFramework/Properties/AssemblyInfo.cs
+++ b/Examples/IGPersistenceFramework/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGPersistenceFramework")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGPieChart/Properties/AssemblyInfo.cs b/Examples/IGPieChart/Properties/AssemblyInfo.cs
index b99f52e6..3ccb3664 100644
--- a/Examples/IGPieChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGPieChart/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGPieChart")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGPivotGrid/Properties/AssemblyInfo.cs b/Examples/IGPivotGrid/Properties/AssemblyInfo.cs
index 34352c30..5677a22e 100644
--- a/Examples/IGPivotGrid/Properties/AssemblyInfo.cs
+++ b/Examples/IGPivotGrid/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGPivotGrid")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGPropertyGrid/Properties/AssemblyInfo.cs b/Examples/IGPropertyGrid/Properties/AssemblyInfo.cs
index 80ab9deb..f841f0bf 100644
--- a/Examples/IGPropertyGrid/Properties/AssemblyInfo.cs
+++ b/Examples/IGPropertyGrid/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGPropertyGrid")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGRadialGauge/Properties/AssemblyInfo.cs b/Examples/IGRadialGauge/Properties/AssemblyInfo.cs
index 7f2843c7..1151ea61 100644
--- a/Examples/IGRadialGauge/Properties/AssemblyInfo.cs
+++ b/Examples/IGRadialGauge/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGRadialGauge")]
@@ -19,8 +19,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGRadialMenu/Properties/AssemblyInfo.cs b/Examples/IGRadialMenu/Properties/AssemblyInfo.cs
index 0d7e115a..b49ca813 100644
--- a/Examples/IGRadialMenu/Properties/AssemblyInfo.cs
+++ b/Examples/IGRadialMenu/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGRadialMenu")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGReporting/Properties/AssemblyInfo.cs b/Examples/IGReporting/Properties/AssemblyInfo.cs
index ac4cecf9..b470790d 100644
--- a/Examples/IGReporting/Properties/AssemblyInfo.cs
+++ b/Examples/IGReporting/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGReporting")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGResourceWasher/Properties/AssemblyInfo.cs b/Examples/IGResourceWasher/Properties/AssemblyInfo.cs
index 7bb22b92..8d4aa46f 100644
--- a/Examples/IGResourceWasher/Properties/AssemblyInfo.cs
+++ b/Examples/IGResourceWasher/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows;
using Infragistics.Samples.Core;
-// General Information about an assembly is controlled through the following
+// 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("IGResourceWasher")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGRibbon/Properties/AssemblyInfo.cs b/Examples/IGRibbon/Properties/AssemblyInfo.cs
index 99ab74bd..a0806639 100644
--- a/Examples/IGRibbon/Properties/AssemblyInfo.cs
+++ b/Examples/IGRibbon/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGRibbon")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGRichTextEditor/Properties/AssemblyInfo.cs b/Examples/IGRichTextEditor/Properties/AssemblyInfo.cs
index db1253a9..b0a9e82d 100644
--- a/Examples/IGRichTextEditor/Properties/AssemblyInfo.cs
+++ b/Examples/IGRichTextEditor/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGRichTextEditor")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGSchedule/Properties/AssemblyInfo.cs b/Examples/IGSchedule/Properties/AssemblyInfo.cs
index 067e0bbe..abf74e63 100644
--- a/Examples/IGSchedule/Properties/AssemblyInfo.cs
+++ b/Examples/IGSchedule/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGSchedule")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGSlider/Properties/AssemblyInfo.cs b/Examples/IGSlider/Properties/AssemblyInfo.cs
index aab10fb0..7dd3249d 100644
--- a/Examples/IGSlider/Properties/AssemblyInfo.cs
+++ b/Examples/IGSlider/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGSlider")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGSparkline/Properties/AssemblyInfo.cs b/Examples/IGSparkline/Properties/AssemblyInfo.cs
index 3835b41d..d894854e 100644
--- a/Examples/IGSparkline/Properties/AssemblyInfo.cs
+++ b/Examples/IGSparkline/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGSparkline")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGSpellChecker/Properties/AssemblyInfo.cs b/Examples/IGSpellChecker/Properties/AssemblyInfo.cs
index acd68aa7..46d69e4e 100644
--- a/Examples/IGSpellChecker/Properties/AssemblyInfo.cs
+++ b/Examples/IGSpellChecker/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGSpellChecker")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGSpreadsheet/Properties/AssemblyInfo.cs b/Examples/IGSpreadsheet/Properties/AssemblyInfo.cs
index 3e179534..9b9a6743 100644
--- a/Examples/IGSpreadsheet/Properties/AssemblyInfo.cs
+++ b/Examples/IGSpreadsheet/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGSpreadsheet")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGSurfaceChart/Properties/AssemblyInfo.cs b/Examples/IGSurfaceChart/Properties/AssemblyInfo.cs
index 9250eb80..a8edda90 100644
--- a/Examples/IGSurfaceChart/Properties/AssemblyInfo.cs
+++ b/Examples/IGSurfaceChart/Properties/AssemblyInfo.cs
@@ -16,8 +16,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGSyntaxEditor/Properties/AssemblyInfo.cs b/Examples/IGSyntaxEditor/Properties/AssemblyInfo.cs
index 9f068c75..800656ee 100644
--- a/Examples/IGSyntaxEditor/Properties/AssemblyInfo.cs
+++ b/Examples/IGSyntaxEditor/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGSyntaxEditor")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGSyntaxParsingEngine/Properties/AssemblyInfo.cs b/Examples/IGSyntaxParsingEngine/Properties/AssemblyInfo.cs
index 96f17b2d..029852af 100644
--- a/Examples/IGSyntaxParsingEngine/Properties/AssemblyInfo.cs
+++ b/Examples/IGSyntaxParsingEngine/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGSyntaxParsingEngine")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGTabControl/Properties/AssemblyInfo.cs b/Examples/IGTabControl/Properties/AssemblyInfo.cs
index c0796a1d..2498b077 100644
--- a/Examples/IGTabControl/Properties/AssemblyInfo.cs
+++ b/Examples/IGTabControl/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGTabControl")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGTagCloud/Properties/AssemblyInfo.cs b/Examples/IGTagCloud/Properties/AssemblyInfo.cs
index 27bc2f79..d725f110 100644
--- a/Examples/IGTagCloud/Properties/AssemblyInfo.cs
+++ b/Examples/IGTagCloud/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGTagCloud")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGThemeManager/Properties/AssemblyInfo.cs b/Examples/IGThemeManager/Properties/AssemblyInfo.cs
index 9b2d1842..3d137720 100644
--- a/Examples/IGThemeManager/Properties/AssemblyInfo.cs
+++ b/Examples/IGThemeManager/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
+// 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("IGThemeManager")]
@@ -15,8 +15,8 @@
[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
+// 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)]
@@ -26,12 +26,14 @@
// Version information for an assembly consists of the following four values:
//
// Major Version
-// Minor Version
+// Minor Version
// Build Number
// Revision
//
-// You can specify all the values or you can default the Build and Revision Numbers
+// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
-[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
\ No newline at end of file
+[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
+
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
\ No newline at end of file
diff --git a/Examples/IGTileManager/Properties/AssemblyInfo.cs b/Examples/IGTileManager/Properties/AssemblyInfo.cs
index b7751242..a8c161c5 100644
--- a/Examples/IGTileManager/Properties/AssemblyInfo.cs
+++ b/Examples/IGTileManager/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGTileManager")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGTimeline/Properties/AssemblyInfo.cs b/Examples/IGTimeline/Properties/AssemblyInfo.cs
index f542f330..4094ba26 100644
--- a/Examples/IGTimeline/Properties/AssemblyInfo.cs
+++ b/Examples/IGTimeline/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGTimeline")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGToolbar/Properties/AssemblyInfo.cs b/Examples/IGToolbar/Properties/AssemblyInfo.cs
index 0002d300..9138a76c 100644
--- a/Examples/IGToolbar/Properties/AssemblyInfo.cs
+++ b/Examples/IGToolbar/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGToolbar")]
@@ -19,8 +19,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGTree/Properties/AssemblyInfo.cs b/Examples/IGTree/Properties/AssemblyInfo.cs
index d5fda0b6..f23de23b 100644
--- a/Examples/IGTree/Properties/AssemblyInfo.cs
+++ b/Examples/IGTree/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGTree")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGTreeGrid/Properties/AssemblyInfo.cs b/Examples/IGTreeGrid/Properties/AssemblyInfo.cs
index 52ad5903..6abb85fc 100644
--- a/Examples/IGTreeGrid/Properties/AssemblyInfo.cs
+++ b/Examples/IGTreeGrid/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGTreeGrid")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGTreemap/Properties/AssemblyInfo.cs b/Examples/IGTreemap/Properties/AssemblyInfo.cs
index 0a65fc15..1061d4b0 100644
--- a/Examples/IGTreemap/Properties/AssemblyInfo.cs
+++ b/Examples/IGTreemap/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGTreemap")]
@@ -19,8 +19,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGUndoRedoFramework/Properties/AssemblyInfo.cs b/Examples/IGUndoRedoFramework/Properties/AssemblyInfo.cs
index fce39686..ac2a4b67 100644
--- a/Examples/IGUndoRedoFramework/Properties/AssemblyInfo.cs
+++ b/Examples/IGUndoRedoFramework/Properties/AssemblyInfo.cs
@@ -5,7 +5,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGUndoRedoFramework")]
@@ -19,15 +19,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGVirtualCollection/Properties/AssemblyInfo.cs b/Examples/IGVirtualCollection/Properties/AssemblyInfo.cs
index 379d7ba2..edaba213 100644
--- a/Examples/IGVirtualCollection/Properties/AssemblyInfo.cs
+++ b/Examples/IGVirtualCollection/Properties/AssemblyInfo.cs
@@ -2,7 +2,7 @@
using System.Runtime.InteropServices;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("IGVirtualCollection")]
@@ -16,15 +16,17 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("e714cdbc-060d-4f9f-a0f3-10a033f40e2a")]
-//In order to begin building localizable applications, set
+//In order to begin building localizable applications, set
//CultureYouAreCodingWith in your .csproj file
//inside a . For example, if you are using US english
//in your source files, set the to en-US. Then uncomment
diff --git a/Examples/IGWord/Properties/AssemblyInfo.cs b/Examples/IGWord/Properties/AssemblyInfo.cs
index 7264616a..25acaf63 100644
--- a/Examples/IGWord/Properties/AssemblyInfo.cs
+++ b/Examples/IGWord/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGWord")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/IGZoombar/Properties/AssemblyInfo.cs b/Examples/IGZoombar/Properties/AssemblyInfo.cs
index e2fd8cfb..9f0969fa 100644
--- a/Examples/IGZoombar/Properties/AssemblyInfo.cs
+++ b/Examples/IGZoombar/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("IGZoombar")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/Infragistics.Samples.Assets/Properties/AssemblyInfo.cs b/Examples/Infragistics.Samples.Assets/Properties/AssemblyInfo.cs
index 8f9ddb96..62cf4c44 100644
--- a/Examples/Infragistics.Samples.Assets/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Samples.Assets/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Windows.Markup;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Infragistics.Samples.Assets")]
@@ -17,8 +17,8 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+// 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)]
diff --git a/Examples/Infragistics.Samples.Framework/Properties/AssemblyInfo.cs b/Examples/Infragistics.Samples.Framework/Properties/AssemblyInfo.cs
index 038934ee..f5227104 100644
--- a/Examples/Infragistics.Samples.Framework/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Samples.Framework/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows.Markup;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Infragistics.Samples.Framework")]
@@ -18,20 +18,20 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+// 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("67450b00-cca4-46e2-8235-97d4b764d294")]
-
+
[assembly: XmlnsPrefix("http://schemas.infragistics.com/xaml/samples", "igSamples")]
[assembly: XmlnsDefinition("http://schemas.infragistics.com/xaml/samples", "Infragistics.Samples.Framework")]
//[assembly: XmlnsDefinition("http://schemas.infragistics.com/xaml/samples", "Infragistics.Samples.Framework.Controls")]
-
-
+
+
//[assembly: AllowPartiallyTrustedCallers()]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
@@ -40,4 +40,4 @@
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
-)]
+)]
diff --git a/Examples/Infragistics.Samples.Services/Properties/AssemblyInfo.cs b/Examples/Infragistics.Samples.Services/Properties/AssemblyInfo.cs
index f88fc903..92af666c 100644
--- a/Examples/Infragistics.Samples.Services/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Samples.Services/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Windows.Markup;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Infragistics.Samples.Services")]
@@ -17,8 +17,8 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+// 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)]
diff --git a/Examples/Infragistics.Samples.Shared/Properties/AssemblyInfo.cs b/Examples/Infragistics.Samples.Shared/Properties/AssemblyInfo.cs
index 5662c6c6..37fe4c42 100644
--- a/Examples/Infragistics.Samples.Shared/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Samples.Shared/Properties/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using System.Windows.Markup;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Infragistics.Samples.Shared")]
@@ -18,8 +18,8 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+// 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)]
@@ -28,7 +28,7 @@
//#if WINDOWS_PHONE
[assembly: System.Resources.NeutralResourcesLanguage("en")]
-
+
//[assembly: AllowPartiallyTrustedCallers()]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
diff --git a/Examples/Infragistics.SamplesBrowser.WPF/Properties/AssemblyInfo.cs b/Examples/Infragistics.SamplesBrowser.WPF/Properties/AssemblyInfo.cs
index 0001d5de..d3437905 100644
--- a/Examples/Infragistics.SamplesBrowser.WPF/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.SamplesBrowser.WPF/Properties/AssemblyInfo.cs
@@ -1,9 +1,10 @@
using System.Reflection;
+using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Infragistics.SamplesBrowser")]
@@ -17,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
@@ -26,11 +29,10 @@
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
+ //(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
+ //(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
-
\ No newline at end of file
diff --git a/Examples/Infragistics.Templates.Framework/Properties/AssemblyInfo.cs b/Examples/Infragistics.Templates.Framework/Properties/AssemblyInfo.cs
index 5a657914..2a80ff91 100644
--- a/Examples/Infragistics.Templates.Framework/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Templates.Framework/Properties/AssemblyInfo.cs
@@ -2,7 +2,7 @@
using System.Runtime.InteropServices;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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(AssemblyDesigner.AssemblyProductPrefix + "Templates.Framework")]
@@ -16,12 +16,13 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("85f214b7-d021-444b-90b2-aa47b91019ff")]
-
\ No newline at end of file
diff --git a/Examples/Infragistics.Templates.SamplesItems/Properties/AssemblyInfo.cs b/Examples/Infragistics.Templates.SamplesItems/Properties/AssemblyInfo.cs
index fe519297..d766d2c4 100644
--- a/Examples/Infragistics.Templates.SamplesItems/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Templates.SamplesItems/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Samples Item Templates")]
@@ -17,11 +17,13 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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("066d6ddf-82bc-4fc0-9fa8-3a1995371baa")]
-
+
diff --git a/Examples/Infragistics.Templates.SamplesPackage/Properties/AssemblyInfo.cs b/Examples/Infragistics.Templates.SamplesPackage/Properties/AssemblyInfo.cs
index d3dd6394..df784388 100644
--- a/Examples/Infragistics.Templates.SamplesPackage/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Templates.SamplesPackage/Properties/AssemblyInfo.cs
@@ -2,7 +2,7 @@
using System.Runtime.InteropServices;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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(AssemblyDesigner.AssemblyProductPrefix + "Templates.SamplesPackage")]
@@ -16,9 +16,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
-// 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
+
+// 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)]
-
\ No newline at end of file
diff --git a/Examples/Infragistics.Templates.SamplesProjects/AssemblyInfo.cs b/Examples/Infragistics.Templates.SamplesProjects/AssemblyInfo.cs
index ca79f6e3..c0885c9a 100644
--- a/Examples/Infragistics.Templates.SamplesProjects/AssemblyInfo.cs
+++ b/Examples/Infragistics.Templates.SamplesProjects/AssemblyInfo.cs
@@ -4,7 +4,7 @@
using Infragistics.Samples.Core;
using System.Windows;
-// General Information about an assembly is controlled through the following
+// 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("$projectname$")]
@@ -18,8 +18,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]
diff --git a/Examples/Infragistics.Templates.SamplesProjects/Properties/AssemblyInfo.cs b/Examples/Infragistics.Templates.SamplesProjects/Properties/AssemblyInfo.cs
index f91416c7..453c2fb1 100644
--- a/Examples/Infragistics.Templates.SamplesProjects/Properties/AssemblyInfo.cs
+++ b/Examples/Infragistics.Templates.SamplesProjects/Properties/AssemblyInfo.cs
@@ -3,7 +3,7 @@
using System.Windows;
using Infragistics.Samples.Core; // provides AssemblyDesigner
-// General Information about an assembly is controlled through the following
+// 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("Samples Project Templates")]
@@ -17,8 +17,10 @@
[assembly: AssemblyVersion(AssemblyDesigner.AssemblyVersion)]
[assembly: AssemblyFileVersion(AssemblyDesigner.AssemblyVersion)]
-// 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
+[assembly: InternalsVisibleTo("Infragistics.SamplesBrowser")]
+
+// 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)]