Author: jgomes
Date: Tue Jul 22 11:41:11 2008
New Revision: 678857
URL: http://svn.apache.org/viewvc?rev=678857&view=rev
Log:
Sign the assembly with strong name. This matches the NAnt build scripts.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-cf20.csproj
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-test.csproj
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq.csproj
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs
activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-cf20.csproj
activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-test.csproj
activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj
Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-cf20.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-cf20.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-cf20.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-cf20.csproj Tue Jul
22 11:41:11 2008
@@ -23,6 +23,8 @@
<NativePlatformName>Pocket PC 2003</NativePlatformName>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
+ <SignAssembly>true</SignAssembly>
+ <AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-test.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-test.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-test.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq-test.csproj Tue Jul
22 11:41:11 2008
@@ -16,6 +16,8 @@
<OldToolsVersion>2.0</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
+ <SignAssembly>true</SignAssembly>
+ <AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@@ -86,5 +88,8 @@
<Name>vs2005-activemq</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <None Include="activemq-dotnet.snk" />
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>
\ No newline at end of file
Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/vs2008-activemq.csproj Tue Jul 22 11:41:11
2008
@@ -9,7 +9,7 @@
<RootNamespace>Apache.NMS.ActiveMQ</RootNamespace>
<AssemblyName>Apache.NMS.ActiveMQ</AssemblyName>
<WarningLevel>4</WarningLevel>
- <SignAssembly>false</SignAssembly>
+ <SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/IMessage.cs Tue Jul 22 11:41:11
2008
@@ -19,49 +19,48 @@
namespace Apache.NMS
{
/// <summary>
- /// Represents a message either to be sent to a message broker or received from a message
broker
+ /// Represents a message either to be sent to a message broker or received from a message
broker.
/// </summary>
public interface IMessage
{
/// <summary>
- /// If using client acknowledgement mode on the session then this method will acknowledge
that the
+ /// If using client acknowledgement mode on the session, then this method will acknowledge
that the
/// message has been processed correctly.
/// </summary>
void Acknowledge();
/// <summary>
- /// Provides access to the message properties (headers)
+ /// Provides access to the message properties (headers).
/// </summary>
IPrimitiveMap Properties { get; }
/// <summary>
- /// The correlation ID used to correlate messages from conversations or long running business
processes
+ /// The correlation ID used to correlate messages from conversations or long running business
processes.
/// </summary>
string NMSCorrelationID { get; set; }
/// <summary>
- /// The destination of the message
+ /// The destination of the message.
/// </summary>
IDestination NMSDestination { get; }
/// <summary>
- /// The amount of time that this message is valid for. null If this
- /// message does not expire.
+ /// The amount of time for which this message is valid. Zero if this message does not
expire.
/// </summary>
TimeSpan NMSTimeToLive { get; set; }
/// <summary>
- /// The message ID which is set by the provider
+ /// The message ID which is set by the provider.
/// </summary>
string NMSMessageId { get; }
/// <summary>
- /// Whether or not this message is persistent
+ /// Whether or not this message is persistent.
/// </summary>
bool NMSPersistent { get; set; }
/// <summary>
- /// The Priority on this message
+ /// The Priority of this message.
/// </summary>
byte NMSPriority { get; set; }
@@ -82,7 +81,7 @@
DateTime NMSTimestamp { get; }
/// <summary>
- /// The type name of this message
+ /// The type name of this message.
/// </summary>
string NMSType { get; set; }
}
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-cf20.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-cf20.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-cf20.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-cf20.csproj Tue Jul 22 11:41:11 2008
@@ -23,6 +23,8 @@
<NativePlatformName>Pocket PC 2003</NativePlatformName>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
+ <SignAssembly>true</SignAssembly>
+ <AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-test.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-test.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-test.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms-test.csproj Tue Jul 22 11:41:11 2008
@@ -31,6 +31,8 @@
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
+ <SignAssembly>true</SignAssembly>
+ <AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@@ -115,5 +117,8 @@
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
+ <ItemGroup>
+ <None Include="activemq-dotnet.snk" />
+ </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>
\ No newline at end of file
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj?rev=678857&r1=678856&r2=678857&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj Tue Jul 22 11:41:11 2008
@@ -11,7 +11,7 @@
<WarningLevel>4</WarningLevel>
<StartupObject>
</StartupObject>
- <SignAssembly>false</SignAssembly>
+ <SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>activemq-dotnet.snk</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
|