diff --git a/.appveyor.yml b/.appveyor.yml index 8d65e8c1..4f1a45b0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,15 +30,18 @@ cache: - packages -> **\packages.config - '%LocalAppData%\NuGet\Cache' -assembly_info: + +dotnet_csproj: patch: true - assembly_version: '{version}' - assembly_file_version: '{version}' - assembly_informational_version: '{version}' + file:'**\*.csproj' + version: '{version}' + package_version: '{version}' before_build: - nuget restore LibreMetaverse.sln + + deploy: - provider: NuGet name: nuget_release diff --git a/CSJ2K/AssemblyInfo.cs b/CSJ2K/AssemblyInfo.cs deleted file mode 100644 index 020d5549..00000000 --- a/CSJ2K/AssemblyInfo.cs +++ /dev/null @@ -1,68 +0,0 @@ -using System; -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -[assembly: CLSCompliantAttribute(true)] - -// 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. - -// TODO: Review the values of the assembly attributes - -[assembly: AssemblyTitle("CSJ2K")] -[assembly: AssemblyDescription("JPEG2000 decoding library")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("CSJ2K")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Revision -// Build Number -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\..\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// - -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] - - -[assembly: ComVisibleAttribute(false)] diff --git a/CSJ2K/CSJ2K.csproj b/CSJ2K/CSJ2K.csproj index dbe5e931..ffe12df1 100644 --- a/CSJ2K/CSJ2K.csproj +++ b/CSJ2K/CSJ2K.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library CSJ2K - false + true True @@ -57,6 +57,9 @@ + OpenMetaverse Developers + 1.2.0 + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved diff --git a/LibreMetaverse.GUI/LibreMetaverse.GUI.csproj b/LibreMetaverse.GUI/LibreMetaverse.GUI.csproj index c290cb33..4db3a182 100644 --- a/LibreMetaverse.GUI/LibreMetaverse.GUI.csproj +++ b/LibreMetaverse.GUI/LibreMetaverse.GUI.csproj @@ -13,7 +13,7 @@ net461 Library LibreMetaverse.GUI - false + true True @@ -74,10 +74,17 @@ + + + + 1.2.0 + OpenMetaverse Developers + LibreMetaverse.GUI + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverse.GUI/Properties/AssemblyInfo.cs b/LibreMetaverse.GUI/Properties/AssemblyInfo.cs deleted file mode 100644 index 24f6fe40..00000000 --- a/LibreMetaverse.GUI/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.GUI")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("f9cf9313-259e-4123-90ec-e894d138a6e4")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/LibreMetaverse.Rendering.Meshmerizer/LibreMetaverse.Rendering.Meshmerizer.csproj b/LibreMetaverse.Rendering.Meshmerizer/LibreMetaverse.Rendering.Meshmerizer.csproj index f41d6120..80d696ad 100644 --- a/LibreMetaverse.Rendering.Meshmerizer/LibreMetaverse.Rendering.Meshmerizer.csproj +++ b/LibreMetaverse.Rendering.Meshmerizer/LibreMetaverse.Rendering.Meshmerizer.csproj @@ -15,7 +15,7 @@ LibreMetaverse.Rendering.Meshmerizer - false + true True @@ -62,10 +62,17 @@ + + + + 1.2.0 + OpenMetaverse Developers + LibreMetaverse.Rendering.Meshmerizer + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverse.Rendering.Meshmerizer/Properties/AssemblyInfo.cs b/LibreMetaverse.Rendering.Meshmerizer/Properties/AssemblyInfo.cs deleted file mode 100644 index cd70080d..00000000 --- a/LibreMetaverse.Rendering.Meshmerizer/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.Rendering.Meshmerizer")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("69cec283-b31e-42bf-bf93-7b8dc8fb95e8")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/LibreMetaverse.Rendering.Simple/LibreMetaverse.Rendering.Simple.csproj b/LibreMetaverse.Rendering.Simple/LibreMetaverse.Rendering.Simple.csproj index 7350f779..9b145413 100644 --- a/LibreMetaverse.Rendering.Simple/LibreMetaverse.Rendering.Simple.csproj +++ b/LibreMetaverse.Rendering.Simple/LibreMetaverse.Rendering.Simple.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse.Rendering.Simple - false + true True @@ -53,10 +53,17 @@ + + + + 1.2.0 + OpenMetaverse Developers + LibreMetaverse + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverse.Rendering.Simple/Properties/AssemblyInfo.cs b/LibreMetaverse.Rendering.Simple/Properties/AssemblyInfo.cs deleted file mode 100644 index 2bca8e7e..00000000 --- a/LibreMetaverse.Rendering.Simple/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.Rendering.Simple")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("1aedd71c-4a00-43ec-8c5b-0fdd070ee796")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj b/LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj index e86a84bf..b394c975 100644 --- a/LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj +++ b/LibreMetaverse.StructuredData/LibreMetaverse.StructuredData.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse.StructuredData - false + true True @@ -55,10 +55,17 @@ + + + + 1.2.0 + OpenMetaverse Developers + LibreMetaverse.StructuredData + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverse.StructuredData/Properties/AssemblyInfo.cs b/LibreMetaverse.StructuredData/Properties/AssemblyInfo.cs deleted file mode 100644 index b9965dda..00000000 --- a/LibreMetaverse.StructuredData/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.StructuredData")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("6ad90a26-4611-4b96-abcd-f53e6426b679")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/LibreMetaverse.Tests/LibreMetaverse.Tests.csproj b/LibreMetaverse.Tests/LibreMetaverse.Tests.csproj index fa969dca..2672e13b 100644 --- a/LibreMetaverse.Tests/LibreMetaverse.Tests.csproj +++ b/LibreMetaverse.Tests/LibreMetaverse.Tests.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse.Tests - false + true True @@ -70,5 +70,8 @@ + 1.2.0 + OpenMetaverse Developers + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved diff --git a/LibreMetaverse.Utilities/LibreMetaverse.Utilities.csproj b/LibreMetaverse.Utilities/LibreMetaverse.Utilities.csproj index 51a98bb0..6ba0d055 100644 --- a/LibreMetaverse.Utilities/LibreMetaverse.Utilities.csproj +++ b/LibreMetaverse.Utilities/LibreMetaverse.Utilities.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse.Utilities - false + true True @@ -57,10 +57,16 @@ + + + + 1.2.0 + OpenMetaverse Developers + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved diff --git a/LibreMetaverse.Utilities/Properties/AssemblyInfo.cs b/LibreMetaverse.Utilities/Properties/AssemblyInfo.cs deleted file mode 100644 index 26a1c692..00000000 --- a/LibreMetaverse.Utilities/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.Utilities")] -[assembly: AssemblyDescription("LibreMetaverse utility library")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("")] -[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("b77aa07a-daa3-431f-b5aa-0c9c5e2151fd")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/LibreMetaverse/AssemblyInfo.cs b/LibreMetaverse/AssemblyInfo.cs deleted file mode 100644 index 94d5ea2c..00000000 --- a/LibreMetaverse/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// 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("LibreMetaverse")] -[assembly: AssemblyDescription("LibreMetaverse library")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © openmetaverse.co 2006-2016")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/LibreMetaverse/LibreMetaverse.csproj b/LibreMetaverse/LibreMetaverse.csproj index c3951148..abcc112f 100644 --- a/LibreMetaverse/LibreMetaverse.csproj +++ b/LibreMetaverse/LibreMetaverse.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse - false + true True @@ -65,5 +65,9 @@ + 1.2.0 + OpenMetaverse Developers + LibreMetaverse + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverseTypes/LibreMetaverse.Types.csproj b/LibreMetaverseTypes/LibreMetaverse.Types.csproj index cf968116..2c032a14 100644 --- a/LibreMetaverseTypes/LibreMetaverse.Types.csproj +++ b/LibreMetaverseTypes/LibreMetaverse.Types.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library LibreMetaverse - false + true True @@ -53,10 +53,16 @@ + + + + 1.2.0 + OpenMetaverse Developers + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved \ No newline at end of file diff --git a/LibreMetaverseTypes/Properties/AssemblyInfo.cs b/LibreMetaverseTypes/Properties/AssemblyInfo.cs deleted file mode 100644 index 45d48cb6..00000000 --- a/LibreMetaverseTypes/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("LibreMetaverse.Types")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("LibreMetaverse")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("05f1f941-8754-45fd-82cc-eb8a4c11ab18")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/PrimMesher/LibreMetaverse.PrimMesher.csproj b/PrimMesher/LibreMetaverse.PrimMesher.csproj index 190bd7df..13d86097 100644 --- a/PrimMesher/LibreMetaverse.PrimMesher.csproj +++ b/PrimMesher/LibreMetaverse.PrimMesher.csproj @@ -10,7 +10,10 @@ PrimMesher netstandard2.0;net461 Dhalia Trimble, OpenSim Contributors, Cinder Roxley - false + true + 1.2.0 + LibreMetaverse.PrimMesher + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved true @@ -32,4 +35,7 @@ + + + diff --git a/PrimMesher/Properties/AssemblyInfo.cs b/PrimMesher/Properties/AssemblyInfo.cs deleted file mode 100644 index 29347913..00000000 --- a/PrimMesher/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -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("PrimMesher")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Cinderblocks Design")] -[assembly: AssemblyProduct("PrimMesher")] -[assembly: AssemblyCopyright("Copyright © OpenSimulator 2008, 2017 All rights reserved")] -[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("ef69232f-7e8c-4efa-9ce6-d4e9743aac66")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] \ No newline at end of file diff --git a/Programs/Baker/Baker.csproj b/Programs/Baker/Baker.csproj index 5df26bd5..2a6d4f2f 100644 --- a/Programs/Baker/Baker.csproj +++ b/Programs/Baker/Baker.csproj @@ -14,7 +14,7 @@ WinExe Baker - false + true True @@ -83,5 +83,9 @@ + OpenMetaverse Developers + 1.2.0 + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved + LibreMetaverse diff --git a/Programs/GridProxy/GridProxy.csproj b/Programs/GridProxy/GridProxy.csproj index 674debdf..73057731 100644 --- a/Programs/GridProxy/GridProxy.csproj +++ b/Programs/GridProxy/GridProxy.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Library GridProxy - false + true True @@ -63,5 +63,9 @@ + 1.2.0 + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved + LibreMetaverse + OpenMetaverse Developers \ No newline at end of file diff --git a/Programs/VoiceTest/VoiceTest.csproj b/Programs/VoiceTest/VoiceTest.csproj index f7064a4d..815e46a6 100644 --- a/Programs/VoiceTest/VoiceTest.csproj +++ b/Programs/VoiceTest/VoiceTest.csproj @@ -15,7 +15,7 @@ netstandard2.0;net461 Exe VoiceTest - false + true True @@ -65,5 +65,9 @@ + 1.2.0 + OpenMetaverse Developers + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved + LibreMetaverse diff --git a/Programs/examples/IRCGateway/IRCGateway.csproj b/Programs/examples/IRCGateway/IRCGateway.csproj index 6f34ffd3..60a64435 100644 --- a/Programs/examples/IRCGateway/IRCGateway.csproj +++ b/Programs/examples/IRCGateway/IRCGateway.csproj @@ -15,7 +15,7 @@ netstandard2.0;net461 Exe IRCGateway - false + true True @@ -64,5 +64,9 @@ + 1.2.0 + OpenMetaverse Developers + LibreMetaverse + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved diff --git a/Programs/examples/PacketDump/PacketDump.csproj b/Programs/examples/PacketDump/PacketDump.csproj index d13e80a0..96f8522f 100644 --- a/Programs/examples/PacketDump/PacketDump.csproj +++ b/Programs/examples/PacketDump/PacketDump.csproj @@ -15,7 +15,7 @@ netstandard2.0;net461 Exe PacketDump - false + true True @@ -64,5 +64,9 @@ + 1.2.0 + OpenMetaverse Developers + LibreMetaverse + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved diff --git a/Programs/examples/TestClient/Properties/AssemblyInfo.cs b/Programs/examples/TestClient/Properties/AssemblyInfo.cs deleted file mode 100644 index a21fa976..00000000 --- a/Programs/examples/TestClient/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("TestClient")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("TestClient")] -[assembly: AssemblyCopyright("Copyright © 2006")] -[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("0563f706-7fa9-42f6-bf23-c6acd1175964")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -[assembly: AssemblyVersion("1.2.0.0")] -[assembly: AssemblyFileVersion("1.2.0.0")] diff --git a/Programs/examples/TestClient/TestClient.csproj b/Programs/examples/TestClient/TestClient.csproj index 7ab42003..878ec586 100644 --- a/Programs/examples/TestClient/TestClient.csproj +++ b/Programs/examples/TestClient/TestClient.csproj @@ -13,7 +13,7 @@ netstandard2.0;net461 Exe TestClient - false + true True @@ -55,10 +55,17 @@ + + + + 1.2.0 + OpenMetaverse Developers + LibreMetaverse + Copyright © OpenMetaverse Developers 2008, 2017 All rights reserved