473,493 Members | 3,174 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Removing a reference from Release build?

Hi,

I'm writing a largish (>60 projects) solution with VS.NET 2003 using VB.NET
as my implementation language. I'm using NUnit and NUnit VS.NET-addin to
implement unit tests for my code.

Currently I have a single UnitTests-project that contains unit tests for all
other projects. This way I can embed all unit testing into a single assembly
which I can use during the development but exclude from a setup that I
create from other projects, thus excluding the unit testing code from the
release-version. This works fine otherwise except it is not very logically
nice to have all the unit testing code inside one project.

BUT: What I would like to do is to embed the unit testing code for each
project inside projects themselves. I would have in each project two folders
"Source", and "UnitTests" that would conveniently separate the unit testing
code from the application code and still retain them in the same project as
they are related.

I think that I can exclude all the unit testing code with a compiler
directive so that none of the unit testing code will be included into the
release-build. That is fine.

But how about the nunit.framework-assembly that I must reference from the
projects? Now it is not a problem as the assembly is referenced only from
the specific UnitTests-project. But if I distribute the unit testing code
into separate projects, each project needs to reference nunit.framework.dll
and I would want leave that reference out from the release build because I
know from the compiler directive that there is no code that actually uses
the nunit-classes in the release build.

So, basically my need would be satisfied if I could say to VS.NET that a
particular reference is to be included only in Debug-build. Or if I could
make the reference conditional, say, depending on a DEBUG-definition
constant.

So, do I have any chance of doing this?

- Petri

PS. I'm not sure if .NET CLR causes problems if a reference DLL is not
present even if I don't refer to it, but I suspect it might.
Nov 22 '05 #1
3 2630
"Petri J. Riipinen" <petri.riipinen@koti.(NOSPAM).soon.fi> wrote

But how about the nunit.framework-assembly that I must reference from the
projects? Now it is not a problem as the assembly is referenced only from
the specific UnitTests-project. But if I distribute the unit testing code
into separate projects, each project needs to reference nunit.framework.dll and I would want leave that reference out from the release build because I
know from the compiler directive that there is no code that actually uses
the nunit-classes in the release build.


Hi Petri, I am doing the same as you do, and AFAIK assemblies are only
referenced when they are _used_ by your project build. VS still copies them
to the target directory, but check your project output's manifest to see the
assemblies actually referenced!

Jens.

--
http://ManagedXLL.net/ | http://jens-thiel.de/ | http://QuantLib.net/
Replace MSDN with my first name when replying to my email address!

Nov 22 '05 #2
Jens Thiel wrote:
"Petri J. Riipinen" <petri.riipinen@koti.(NOSPAM).soon.fi> wrote

But how about the nunit.framework-assembly that I must reference
from the projects? Now it is not a problem as the assembly is
referenced only from the specific UnitTests-project. But if I
distribute the unit testing code into separate projects, each
project needs to reference nunit.framework.dll and I would want
leave that reference out from the release build because I know from
the compiler directive that there is no code that actually uses the
nunit-classes in the release build.


Hi Petri, I am doing the same as you do, and AFAIK assemblies are only
referenced when they are _used_ by your project build. VS still
copies them to the target directory, but check your project output's
manifest to see the assemblies actually referenced!


The copying is not the problem in the release deployment as I have one
Setup-project which is used to distribute the assemblies to several other
programmers the use the assemblies. Of course the Setup-project suggests
adding the nunit.framework.dll to the project as there is an obvious
dependency inside the VS.NET-project references but I can always exclude the
nunit.framework.dll from the setup project.

Have you verified that although you reference the (nunit.framework?)
assembly in VS.NET and leave out the unit testing code from the
Release-build, there is no need to include the nunit.framework.dll with the
other assemblies?

Ok, will check the manifest as you suggest.

- Petri
Nov 22 '05 #3
> Have you verified that although you reference the (nunit.framework?)
assembly in VS.NET and leave out the unit testing code from the
Release-build, there is no need to include the nunit.framework.dll with the other assemblies?


I have verified it with another assembly, that is only used for a special
edition build, not using any types from that assembly (using #if...). No
problems with that (using VS.NET 2003 and v1.1 if that matters somehow).

Try to remove your reference and see if your project still compiles. Maybe
you have missed to "#if" something?

Jens.

--
http://ManagedXLL.net/ | http://jens-thiel.de/ | http://QuantLib.net/
Replace MSDN with my first name when replying to my email address!
Nov 22 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
319
by: Petri J. Riipinen | last post by:
Hi, I'm writing a largish (>60 projects) solution with VS.NET 2003 using VB.NET as my implementation language. I'm using NUnit and NUnit VS.NET-addin to implement unit tests for my code. ...
2
3161
by: VM | last post by:
When I'm adding a reference to another project that is built as one of the Projects in the Solution, should I add the dll in Debug or the one in Release? I usually also do a batch build of...
2
3936
by: Scott Yost | last post by:
I reference a .NET DLL to import some of my custom types. I can build that DLL in debug or release mode, but I usually keep the debug one built so I can debug it. When I want to link to the release...
3
2874
by: Steve Franks | last post by:
I'm using Visual Studio 2005 RC and cannot figure out how to produce a "release" build. Am I doing something wrong? I'm wondering if perhaps MS locked out the ability to produce a release build...
11
1895
by: Just Me | last post by:
I have a solution containing many usercontrol projects. When I wish to reference a usercontrol in another project I can select either the project or the assembly. Does it make a difference which...
7
13783
by: Oldman | last post by:
How do you conditionally reference an assembly based off of the build configuration? Imagine a scenario where I want to have an Sql Release Server build and an Oracle Release Build and the only...
5
9105
by: Richard J Foster | last post by:
Hi there, I have a pair of C# projects in VS2003. The first project, a dll, is referenced in the second via a project reference. The assemblies in question are delay-signed during a...
1
2975
by: kurt sune | last post by:
I am having trouble publishing a website for RELEASE. 1. web.config: <compilation defaultLanguage="vb" debug="false"> 2. in Configuration manager I set the configuration to Release for the...
11
3219
by: MikeT | last post by:
This may sound very elementary, but can you trap when your object is set to null within the object? I have created a class that registers an event from an object passed in the constructor. When...
3
3433
by: Arodicus | last post by:
This is bugging me: how do I reference the topmost node (HTML) within a document? I'd like to set a class on it, which specifies various browser/os/versions so that several...
0
7119
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7157
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7195
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5453
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4889
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1400
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
644
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
285
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.