add AssemblyInfo.cs to Scripts (primarily to remove ComVisible code analyzer nag)

This commit is contained in:
Mark Sturgill 2014-02-25 13:56:48 -07:00
parent 2bb6984b94
commit abe9f5acb2
2 changed files with 38 additions and 2 deletions

View file

@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RunUO Scripts Assembly")]
[assembly: AssemblyDescription("RunUO Scripts Assembly")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("RunUO")]
[assembly: AssemblyProduct("RunUO")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("07fe114c-a456-42f8-82fd-251c9b78cd49")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.0.0.1")]
[assembly: AssemblyFileVersion("0.0.0.1")]

View file

@ -6,9 +6,11 @@
<ProjectGuid>{DAE872E6-6899-427C-A75D-AD52526EBCDA}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ClassLibrary</AssemblyName>
<AssemblyName>RunUO Scripts</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -28,7 +30,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Scripts</RootNamespace>
<RootNamespace>Server</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
@ -3045,6 +3047,7 @@
<Compile Include="Multis\HouseTeleporter.cs" />
<Compile Include="Multis\MovingCrate.cs" />
<Compile Include="Multis\PreviewHouse.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Regions\BaseRegion.cs" />
<Compile Include="Regions\DungeonRegion.cs" />
<Compile Include="Regions\GreenAcres.cs" />