Files
UnrealEngineUWP/Engine/Source/Programs/UnrealVS/BatchBuilderToolWindow.cs
Joe Kirchoff d6fd9814f7 UnrealVS: Update NuGet to use PackageReference instead of package.config
https://docs.microsoft.com/en-us/nuget/consume-packages/migrate-packages-config-to-package-reference

Fix Code Analysis warnings
Set warnings as errors
Format all documents & remove unused usings

#rb Joakim.Lindqvist

[CL 16021915 by Joe Kirchoff in ue5-main branch]
2021-04-15 11:28:23 -04:00

35 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Microsoft.VisualStudio.Shell;
using System;
using System.Runtime.InteropServices;
namespace UnrealVS
{
[Guid(GuidList.UnrealVSBatchBuildToolWindowPersistanceString)]
internal class BatchBuilderToolWindow : ToolWindowPane
{
/// <summary>
/// Standard constructor for the tool window.
/// </summary>
public BatchBuilderToolWindow() :
base(null)
{
// Set the window title reading it from the resources.
Caption = Resources.BatchBuilderWindowTitle;
// Set the image that will appear on the tab of the window frame
// when docked with an other window
// The resource ID correspond to the one defined in the resx file
// while the Index is the offset in the bitmap strip. Each image in
// the strip being 16x16.
BitmapResourceID = 200;
BitmapIndex = 0;
// This is the user control hosted by the tool window; Note that, even if this class implements IDisposable,
// we are not calling Dispose on this object. This is because ToolWindowPane calls Dispose on
// the object returned by the Content property.
base.Content = BatchBuilder.ToolControl;
}
}
}