You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Eddie Fast (JIRA)" <ji...@apache.org> on 2010/09/28 02:52:40 UTC

[jira] Created: (AMQNET-287) build errors in vs2008-activemq.csproj

build errors in vs2008-activemq.csproj
--------------------------------------

                 Key: AMQNET-287
                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
             Project: ActiveMQ .Net
          Issue Type: Bug
          Components: NMS
    Affects Versions: 1.4.0
         Environment: Windows 7 x64, Visual Studio 2008 SP1
            Reporter: Eddie Fast
            Assignee: Jim Gomes


- In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
- In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AMQNET-287) build errors in vs2008-activemq.csproj

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/AMQNET-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=62177#action_62177 ] 

Timothy Bish commented on AMQNET-287:
-------------------------------------

Best to use nant to build the project.

> build errors in vs2008-activemq.csproj
> --------------------------------------
>
>                 Key: AMQNET-287
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: NMS
>    Affects Versions: 1.4.0
>         Environment: Windows 7 x64, Visual Studio 2008 SP1
>            Reporter: Eddie Fast
>            Assignee: Jim Gomes
>
> - In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
> - In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (AMQNET-287) build errors in vs2008-activemq.csproj

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQNET-287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Bish resolved AMQNET-287.
---------------------------------

    Fix Version/s: 1.5.0
       Resolution: Fixed

Added missing file to the VS project.

> build errors in vs2008-activemq.csproj
> --------------------------------------
>
>                 Key: AMQNET-287
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: NMS
>    Affects Versions: 1.4.0
>         Environment: Windows 7 x64, Visual Studio 2008 SP1
>            Reporter: Eddie Fast
>            Assignee: Timothy Bish
>             Fix For: 1.5.0
>
>
> - In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
> - In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (AMQNET-287) build errors in vs2008-activemq.csproj

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQNET-287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Bish reassigned AMQNET-287:
-----------------------------------

    Assignee: Timothy Bish  (was: Jim Gomes)

> build errors in vs2008-activemq.csproj
> --------------------------------------
>
>                 Key: AMQNET-287
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: NMS
>    Affects Versions: 1.4.0
>         Environment: Windows 7 x64, Visual Studio 2008 SP1
>            Reporter: Eddie Fast
>            Assignee: Timothy Bish
>             Fix For: 1.5.0
>
>
> - In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
> - In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AMQNET-287) build errors in vs2008-activemq.csproj

Posted by "Eddie Fast (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/AMQNET-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=62178#action_62178 ] 

Eddie Fast commented on AMQNET-287:
-----------------------------------

I guess these comments are outside the scope of the bug, but I just wanted to comment on using nant.

We've built up a library of components all using NMS, all built with VS2008 proper.  It would not be convenient to introduce a build dependency (nant) just to build NMS.

We could simply use the binary dist.  However, using a binary dist doesn't allow us to build separate Debug/Release versions of the libs, and that has proved helpful in the past to debug crashes and implementation details.  So we include the source project as a ProjectReference instead of a regular Reference (.dll), which gives us the ability to switch between Debug/Release.

So, having working .csproj files are important to us.  This bug was easy to patch on my end, but just wanted to notify the team.   If the .csproj files eventually disappear, in preference of nant, I don't think it would be the end of the world, just not convenient for us.

> build errors in vs2008-activemq.csproj
> --------------------------------------
>
>                 Key: AMQNET-287
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: NMS
>    Affects Versions: 1.4.0
>         Environment: Windows 7 x64, Visual Studio 2008 SP1
>            Reporter: Eddie Fast
>            Assignee: Jim Gomes
>
> - In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
> - In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (AMQNET-287) build errors in vs2008-activemq.csproj

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/AMQNET-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=62179#action_62179 ] 

Timothy Bish commented on AMQNET-287:
-------------------------------------

Patches are always welcome.  We'll be sure to update the files for the next release.  As the project is open source, I encourage you to take the initiative and submit patches when you find issues like these, the more folks contribute the better the project becomes.  

> build errors in vs2008-activemq.csproj
> --------------------------------------
>
>                 Key: AMQNET-287
>                 URL: https://issues.apache.org/activemq/browse/AMQNET-287
>             Project: ActiveMQ .Net
>          Issue Type: Bug
>          Components: NMS
>    Affects Versions: 1.4.0
>         Environment: Windows 7 x64, Visual Studio 2008 SP1
>            Reporter: Eddie Fast
>            Assignee: Jim Gomes
>
> - In the 1.4.0 source .zip, it doesn't build out-of-the-box.  The project is missing RequestTimedOutException.cs.  Adding it to the project fixes the build.
> - In the trunk, the project file is looking for CommonAssemblyInfo.cs, but it can't find it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.