Tagged Questions

A file with the 'csproj' file extension is a Visual Studio .NET C# Project file.

learn more… | top users | synonyms

34
votes
4answers
2k views

<Subtype>Designer</Subtype> Added then removed by Visual Studio on load/unload

Anyone see this before? I have a large Visual Studio project that keeps adding [Subtype] Designer[/Subtype] to my .vcproj then removing it on the next open and close of the project. There is only ...
12
votes
2answers
5k views

What use is the Aliases property of assembly references in Visual Studio 8

When I add an assembly reference to a project in Visual Studio 8 the Aliases property, of that reference, is set to "global". What is this property good for and why is it set to global? MSDN tells ...
11
votes
5answers
823 views

Targeting both .NET 3.5 and Silverlight

Let's imagine I already have a project building .NET 3.5 assembly. Now I want to build this assembly for Silverlight, and moreover, maintain its Silverlight version with minimal efforts further. What ...
10
votes
2answers
766 views

Does anyone know how to make notepad++ treat csproj files as XML automatically?

I often use notepad++ for editing of the csproj files. And I always need to go to the Language menu and select XML in order to get syntax highlighting. Is it possible to configure notepad++ to treat ...
10
votes
3answers
2k views

In a .csproj file, what is is <None Include=“…”> for?

How is <None Include="C:\foo.bar" /> different from <Content Include="C:\foo.bar" /> ? Thanks
9
votes
4answers
2k views

MvcBuildViews true with Entity Framework in ASP.NET MVC 2

In VS 2010, changing true in a MVC2 project's .csproj file causes an error if you are using Entity Framework. Could not load type 'System.Data.Entity.Design.AspNet.EntityDesignerBuildProvider'. ...
9
votes
4answers
1k views

In Visual Studio (2008) is there a way to have a custom dependent file on another custom file?

Instead of a *.cs code behind or beside I'd like to have a *.js file. I'm developing a MVC application an have no need for a code beside because I have controllers, but in certain cases it'd be nice ...
6
votes
3answers
230 views

CSPROJ extension?

As part of our development life cycle we have a number of process that we run against the C# source in our projects. The processes are driven off a GUI that currently reads the *.csproj file to find ...
6
votes
3answers
1k views

Partial .csproj Files

Is it possible to split the information in a .csproj across more than one file? A bit like a project version of the partial class feature.
5
votes
2answers
1k views

Opening existing project in Visual Studio 2010

All, I have a project that was originally written in vs 2005 or earlier (don't remember bc I didn't write it). I opened it in vs2008 and converted it although it still has the csproj file. sln file ...
5
votes
2answers
690 views

MS-Build BeforeBuild not firing

I'm customising a .csproj project to run some custom tasks before the main build. However, I can't get the tasks to execute at all. I uncommented the <Target Name="BeforeBuild" /> element in ...
5
votes
7answers
1k views

Easy way to add multiple existing .csproj to a Visual Studio Solution?

I've checked out a branch of C# code from source control. It contains maybe 50 projects in various folders. There's no existing .sln file to be found. I intended to create a blank solution to add ...
5
votes
4answers
2k views

WiX(v3): Harvesting a .csproj with heat.exe in vs2008?

The Question Newly initiated into WiX, I researched and found that v3 uses a tool (heat.exe) to "harvest" information into WiX fragments. I have managed to stumble about and find information on this ...
4
votes
1answer
118 views

How do I include DLLs in my .csproj file?

Well, the thing is that I don't have Visual Studio installed and I don't want to install it, so, I made a batch file that compiles my .csproj file and all of my source files too. The problem is that ...
4
votes
3answers
2k views

C# “Backward” Convert Visual Studio 2010 .csproj project to 2008? [closed]

Possible Duplicate: how to convert a VS 2010 soultion back to 2008 I have a .NET 3.5 project in VS 2010. Is there a way to convert the VS 2010 .csproj file format to a VS 2008 .csproj file ...
4
votes
2answers
384 views

XPath and *.csproj

I am for sure missing some important detail here. I just cannot make .NET's XPath work with Visual Studio project files. Let's load an xml document: var doc = new XmlDocument(); ...
4
votes
7answers
337 views

How do I get a diagram of the dependencies between my C# projects

I have a fairly complex application which has been broken up into multiple components. Each component has a solution file which contains a bunch of projects. So I like to think of this as a component ...
4
votes
3answers
533 views

How can I prevent external MSBuild files from being cached (by Visual Studio) during a project build?

I have a project in my solution which started life as a C# library project. It's got nothing of any interest in it in terms of code, it is merely used as a dependency in the other projects in my ...
4
votes
3answers
804 views

Is there a way to automatically include content files into asp.net project file?

I'm frequently adding a lot of content files (mostly images and js) to my ASP.NET project. I'm using VS publish system, and on publish, new files are not published until I include them in the ...
4
votes
1answer
1k views

Why does VS 2008 create PDBs for some RELEASE projects but not others?

I have a solution containing several projects that have migrated from VS 2003, 2005, 2008. When compiling all the projects for the RELEASE configuration, VS 2008 creates PDB files for some projects, ...
3
votes
1answer
396 views

Create a custom powershell script for nuget that adds a custom target to the csproj BeforeBuild step

I want to create a nuget package that adds a BeforeBuild step to my csproj using a custom MSBuild task I have created. Ideally, I want to: Add a new Target into the csproj file ...
3
votes
2answers
381 views

How get the default namespace of project csproj (VS 2008)

I have VS 2008 and csproj project (C# Library). In properties of project, has an assembly name, and default namespace. Note: each class has a namespace. Is it possible, in runtime, get the value ...
3
votes
2answers
179 views

Why do my projects build when there are no changes?

I've got many C# (Visual Studio 2008) projects and a few of them are updating the assembly even when there have been no changes (even when I choose Build and not Rebuild). Most of my projects don't do ...
3
votes
1answer
590 views

MSBuild Post-Build

I've got an MSBuild script that is just about doing everything that I need it to do apart from my post-build step (see a previous question that I asked: MSBuild conditional Exec?). What I'm looking ...
3
votes
1answer
808 views

Error HRESULT E_FAIL when pasting references in Visual Studio

I know this isn't a programming question but it is a programming tool question. In Visual Studio 2008 Team Edition (version 9.0 with .NET 3.5 SP1) when I copy and paste references from one csproj to ...
3
votes
2answers
3k views

Including content files in .csproj that are outside the project cone

I have a C# project say MyProject.csproj located at "C:\Projects\MyProject\". I also have files that I want copied into the output directory of this project. But, the files are at the location ...
2
votes
2answers
48 views

C# project (.CSProj), linking to files with flat directory structure

I have a C# class library project, which includes several external files as "links". In the project file, this comes out as: <None include="MyFile.txt"> <link>MyFile.txt</link> ...
2
votes
1answer
44 views

Calling C++ LINK from a csproj in VS2008

I'm interested in combining a single .cpp file (containing both native and managed code) into a larger C# project. I don't want to use a separate DLL for the CPP code, both because it seems silly to ...
2
votes
1answer
75 views

What is the AppDesignerFolder used for in a csproj file?

I'm perplexed as to what the AppDesignerFolder element is used for in a csproj file. There appears to be almost no documentation at MSDN, and the most insightful answer I've found is just not very ...
2
votes
1answer
214 views

Best way to parse VisualStudio .csproj file using python

What is the best way to parse Visual Studio .csproj file using python, for further modification? It is some .csproj file: ... <ItemGroup> <Reference Include="SomeAssembly, ...
2
votes
1answer
284 views

Changing csproj OutputType based on project configuration

I need to build a C# project as either WinExe or Library depending on the project's configuration. I've tried both of these methods with no luck: 1) In the general PropertyGroup: <OutputType ...
2
votes
2answers
132 views

How can I use regex to chop apart xcopy statements embedded in .csproj files?

I'm working with a bunch (~2000) .csproj files, and in this development staff there's a historical precedent for embedded xcopy in the post-build events to move things around during the build process. ...
2
votes
1answer
366 views

Xpath not operator in Select-Xml via Powershell

I'm working with csproj files, and I'm trying to write a cmdlet that extracts all of the files referenced by a project file. This will include all of the Compile, EmbeddedResource, Resource, Content, ...
2
votes
2answers
795 views

How to set the “Copy Local Dependencies” in C# projects [problem with CopyLocal]

I have an assembly called A.dll that has a project reference to an assembly called B.dll. The assembly referenced B.dll has a binary reference to C.dll. A.dll --> B.dll --> C.dll I've set at A.dll ...
2
votes
1answer
341 views

Tfs2010 Build Number and Assembly File Versions & MSBuild targets

I read John Robbins' article TFS 2010 Build Number and Assembly File Versions: Completely In Sync with Only MSBuild 4.0, and I'm wondering about the best way to go about integrating this. The ...
2
votes
1answer
274 views

Error doing an MSBuild on a CLR Storedprocedure project on Build Server

When building a CLR Storedprocedure Project using MSBuild on our build server (Team City) we're getting the following error: error MSB4019: The imported project ...
2
votes
2answers
984 views

How to embed an XSLT file in a .NET project to be included in the output .exe?

I have a simple C# Console App that reads in an XML file specified the the user, runs an XSLT transformation on it, and outputs the results. When I distribute my app to users, I want to distribute a ...
2
votes
1answer
331 views

CSProj contains a reference

I put my csproj for my web service in sourcesafe. Now inside of the text of the csproj there is a line stating that the webservice is located at localhost/something is there a way to not store this ...
2
votes
2answers
1k views

Precompiling ASP.NET Web application with MSBuild

I have a c# web application project in Visual Studio 2008 that I want to precompile for deployment. After looking at various options, it seems all of them have some issues - perhaps someone could give ...
2
votes
1answer
2k views

What controls the ProductVersion setting in .csproj files?

Every now and then our source control engine indicates that the ProductVersion in a .csproj file has changed. We're using VS2008 SP1. Looking through the codebase I can see two versions reported: ...
2
votes
2answers
349 views

Adding Asp.net mvc to existing web app how to get scaffold options

I followed the guidance in the Professional Asp.net 1.0 Wrox book for adding the MVC references to an exisiting web application and it works well except for the scaffolding options. When i right click ...
2
votes
2answers
650 views

How can I get something to (really) run AfterPublish using MSBuild

I need to shell out (to call svn commit on my .application file) after a ClickOnce publish. However I've not been able to find a way to hook it into my MSBuild .csproj file. The PostBuild Event is ...
2
votes
4answers
6k views

Compiling a .vbproj or .csproj project file without Visual Studio

Is there a way to compile a .vbproj or .csproj project file directly, just like Visual Studio does? When you compile in Visual Studio, the "output" window shows the actual call to the compiler, which ...
1
vote
2answers
69 views

Powershell to remove and add reference to csproj

In relation to this previous question I am trying to create a batch file which as part must remove and add a reference to an XML *.csproj file. I have looked at this, this, this and this previous ...
1
vote
2answers
89 views

Possible to remove and add a reference to csproj programmatically via a batch file?

I am writing a short batch file to prepare a control library DLL with Examples project for deployment via sip file and have the following question. Given a csproj file at known location and a DLL at ...
1
vote
2answers
43 views

Run other than the DefaultTarget for a project configuration under Visual Studio 2010

I've a MSBuild target in my csproj to copy files and folders of my web application to a target path after build. <Target Name="PublishToFileSystem" ...
1
vote
2answers
81 views

The C# project referencing unmanaged third-party assembly builds fine in Debug, but fails in Release configuration

I have a project in C#, which references unmanaged third-party DLL (which is ChilkatDotNet2.dll, but it seems not to matter). The third-party DLL is delivered in 2 versions, x86 and x64. The project ...
1
vote
0answers
54 views

How to access macro variables within csproj file?

In my csproj file, I have a different build path. <BaseIntermediateOutputPath>C:\Temp\Build\MyProject</BaseIntermediateOutputPath> When in the prebuild and post build events, I have ...
1
vote
2answers
222 views

msbuild include / copy from subdirectory to root directory - possible?

Can I include a file from a subdirectory, but have it placed in the root directory of the bulid instead of its original sub directory? Example: We have multiple robots.txt files for different release ...
1
vote
1answer
159 views

Conditional AssemblyName causes C# project to always rebuild when using names other than “Debug”/“Release”

So I'm adding a "d" extension to my assembly name when building in debug mode. As far as I can tell the standard way to do this in C# is to edit the .csproj file and put in the following: ...

1 2 3