Tagged Questions
0
votes
0answers
15 views
Warning MSB3270 in Fakes projects
After migration to VS2012 (Update 2) and using Fakes, MSBuild began to show a new warning:
There was a mismatch between the processor architecture of the project being built "MSIL" and the processor ...
0
votes
2answers
37 views
Sequencing project/solution build and cmd file executing in custom MSBuild file
I need to tie together a bunch of steps which include building solutions, projects and running .cmd files using a custom MSBuild file.
My first pass at this is below:
<Project ...
0
votes
1answer
12 views
app,config not overwritten or changes not picked up with custom app.config files according to Build cofiguration
I am currently creating a solution that must both work with localdb and sqlservercompact 4.0, using EntityFramework Code First. I created therefor extra builconfigurations: LocalDb and SQLCE. ...
2
votes
2answers
65 views
Changing .cpp file causing Visual Studio 2012 to recompile unrelated files
Curious if anyone knows how to troubleshoot this; I have a particular .cpp file that, for some reason, whenever I modify it (even just adding a whitespace character) and build the project, causes a ...
2
votes
1answer
93 views
Indirect references in VB.NET solution breaking build
Project A references Projects B. Project B references Project C. Project A does not reference Project C.
This builds fine locally. However, on the build server it errors out because Project A does ...
1
vote
0answers
32 views
MSDeploy broken on Team Build Server after Installing Visual Studio SDK
I have had nightly builds set up and working for a few months until now. I installed Visual Studio 2012 SDK on Saturday and now my builds are not deploying via MSDeploy.
My build server has Visual ...
1
vote
1answer
64 views
How do I use an MSBuild file from Visual Studio 2012?
I have a simple MSBuild file that I'm learning with.
Here it is:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Clean" ...
0
votes
1answer
32 views
MSBuild referencing DLL's in Task
I have the following inline task defined in a .csproj file that should run BeforeBuild.
<UsingTask TaskName="VersioningTask" TaskFactory="CodeTaskFactory" ...
1
vote
0answers
98 views
How to build Visual Studio 2012 Publishing Profiles on a Build Server with MsBuild without installing Visual Studio 2012
I read through many of the posts on here and never found a clear answer that worked. So after spending the time getting this to work, I figured I should post it.
Problem: The publishing profile ...
1
vote
1answer
46 views
How can I set the deployment path for an iisApp Provider using MsDeploy?
I am creating Web Deployment Package zip files for my Web Applications
I found I am able to specify the Site Name of the application by including a pubxml during the packaging of my site and using ...
0
votes
0answers
31 views
GraphCmd.exe : URI formats are not supported
I am trying to validate architecture through MsBuild in my CI server. I have a design model project(.modelproj) in my solution and I have changed the project file to load the ...
0
votes
1answer
72 views
cant publish Web Application to file system with vs 2012 express
I have tried to publish 3 different web applications to my file system and every time I get the same error message :
"The specified path, file name, or both are too long. The fully qualified file ...
1
vote
2answers
85 views
How to rename build name with assembly version?
Pls see screenshot. I have setup continuos integration with tfsservice.
It builds and deploys after each checkin.
I would like to append or pre-pend if that word exists, the assembly version so that ...
1
vote
1answer
63 views
VS2012 Error when creating publish package: Exception in Executing Publishing Access to path is denied
I am trying to publish an application with VS2012 and when i try and make the package i get an error that access to the path is denied. I have checked and my user has full control and verified the ...
0
votes
1answer
71 views
Best Practices for Creating or Enhancing LightSwitch Projects
I'm researching the use of Microsoft LightSwitch as a target for an automated UI/code builder. The application builder might create LightSwitch solutions and projects, and might create or modify ...
1
vote
1answer
37 views
How to make WPF projects build on run?
In Visual Studio 2012 I want my projects to build on run. Typically I'd do this via
Options> Projects and Solutions > Build and Run > Always build when project is out of date.
For all my other ...
0
votes
1answer
157 views
MSBuild error while building with new build definition
We are working with VS2008 connected to TFS2012. We have a requirement that if anyone do checkIn changes,then latest version files must be copied to a central folder that is not mapped with TFS. I ...
0
votes
0answers
88 views
Automatic update-database in continuous deployment with Visual Studio 2012 and TFS 2012
Some weeks ago, I used the following steps to publish our developers' application to our testing Web site.
Get Latest Version (Recursive) in Solution Explorer.
Run Update-Database in Package Manager ...
0
votes
0answers
54 views
MSBuild + VS2012 Platform Toolset: Modify Linker Options?
We're working on a custom platform toolset for VS, and it needs to use link.exe, along with some custom options.
Right now I am playing with the Link.AdditionalDependencies option. I can retrieve the ...
0
votes
1answer
43 views
Visual Studio 2012 - Copy “Views” and “Content” to project Output Path
I have an MVC project and would like to have the build output to a different directory. I have set the Output Path in the project properties and this takes care of where all the .DLL's are deployed ...
1
vote
0answers
100 views
Generic test deployment items generated during build?
How can I specify a generic test's deployment items to be files that are generated by the build process? My current understanding of the default build process template is that automated tests (edit ...
9
votes
2answers
323 views
'Specified condition “$(PackageAsSingleFile)” evaluates to “” instead of a boolean?
The visual studio 2012 on my PC get the following error message when preview in the "Public Web". I need to restart VS to get rid of the error message.
Invoke build failed due to exception ...
1
vote
1answer
31 views
MSBuild Messages for c++
Problem: Editings .props files with msbuild is failing. I'd like to see what the intermediate results of operations are doing with some output message. " is not supported" is the what the IDE is ...
1
vote
0answers
49 views
Specifying MSBuild tasks in Visual Studio 2010 (2012?)
I am trying to figure out how to specify values to MSBuild Tasks from within Visual Studio 2010.
For instance, I have a build task called "BuildMergeModule" defined, and this build task takes an ...
0
votes
2answers
126 views
How to use $(OutDir) in Pre-Build Event?
$(OutDir) = \bin\Release (in local with VS2012)
$(OutDir) = C:\...\BuildDefinition\Binaries (on TFS2010 Team Build)
How to do in a Pre-build event to write a XCOPY which works in the two cases ?
In ...
1
vote
1answer
377 views
How to determine if MSBUILD Arguments were executed for TFS Build Definition
I am using Team Foundation Service 2012, with a build controller hosted internally so I can deploy apps to our web servers. I setup the Build Definition, and am using the my Debug configuration, and ...
2
votes
2answers
123 views
How can I make sure only *.exe or *.dll file goes to output folder and any other build files goes to intermediate folder VS2012?
I created a C# project on VS2012 and I want that the output folder will only contain the .exe/.dll file and any other files that are created when building the project will go to the intermediate ...
0
votes
1answer
65 views
Is there any way to call custom code when publishing?
We have quite a large site now, build in C#/Asp.Net. We've got two publishing profiles, one for Staging and one for Production. They have been made using standard Web Deploy publish profiles.
What ...
1
vote
0answers
24 views
Getting intelisense to pick up intermediate cs file
I have an XSD file (a DTD) which I run the XSD tool on to produce a C# file. I have modified my csproj's msbuild file in the following two places:
Added a special type for the item group:
...
1
vote
0answers
136 views
VS2012 Custom Build Step - Treat Output As Content
I am currently migrating a reasonably large solution from VS2008 to VS2012. To date, this solution has been dependent on a command line build for several build steps, and I want to use the project ...
5
votes
1answer
622 views
MSBuild in TeamCity of Visual Studio 2012 solution
I have a VS 2012 web project /sln that I am trying to build in TeamCity. it uses .NET 4.5 which is installed on TeamCity.
The TeamCity server has VS 2010 installed only.
I get this error when the ...
0
votes
1answer
120 views
Can Visual Studio 2012 do a custom build such as: compile project A > compile and link project B > link project A?
I am looking for a way to builds projects in this order with Visual Studio 2012 (C++ but might be a general question):
Compile ProjectA (I just need the .objs)
Compile and link ProjectB
Link ...
0
votes
1answer
80 views
Copy external linked file to a root of a web site
In Visual Studio 2012
I have three web sites that all use the same set of database connection strings.
I keep database connections strings in a connectionStrings.config file which is in a common ...
4
votes
1answer
47 views
If Statement in Visual Studio Project
I have this in my Visual Studio Project
<Target Name="BeforeBuild">
<Message Text="Compiling TypeScript files" />
<Message Text="Executing tsc$(TypeScriptSourceMap) ...
1
vote
1answer
171 views
Typescript error in Jenkins
I have the following error in Jenkins ( refers to a path on the disk, each instance of below can be different and not neccasarily the same as all other instances of )
The command "tsc ...
0
votes
0answers
58 views
Prevent VS 2012 From Generating Folders for Linked Files
I am including generated code in a VS 2012 C# project via the code
<Compile Include="$(GenDir)\*.cs" >
<Visible>true</Visible>
...
1
vote
0answers
204 views
Installing PlatformToolset v110 without installing Visual Studio 2012
We have a Visual Studio solution that contains some VC++ projects, and we've currently upgraded to Visual Studio 2012 from VS2010. In the process we also lifted the VC++ projects to PlatformToolset ...
0
votes
0answers
30 views
How can I handle plugin-like dependencies in MSBuild?
I have a project which ships with a plugin model. It also ships with a couple of default plugins. I'd like to tell Visual Studio (and MSBuild on the Team Build server) that when building the main ...
0
votes
0answers
90 views
msbuild fail on win 2008 R2 on CLI/C++ project
I've just installed VS2012 on my win2008 R2 64 bitserver. Then created simple hello world CLI/C++ projects. When i try to compile this I got the following error:
stdafx.cpp : fatal error C1197: ...
3
votes
1answer
321 views
SQL Database Project: build different scripts depending on build configuration
The problem I want to solve is to build different scripts depending on build configuration.
Say we have two instances of SQL Server:
Enterprise version with connected Linked servers
LocalDb version ...
0
votes
1answer
107 views
Running command after publishing files
I am trying to run a command after publishing.
<Target Name="AfterPublish" AfterTargets="MSDeployPublish">
<Exec Command="echo @@@@@ AfterPublish @@@@@ " />
</Target>
But as you ...
0
votes
1answer
464 views
MSBuild & SQL Server Database Project: bind the deploy and publish desination to the build configuration
Visual Studio 2012. SQL Server Database Project.
Four build configurations were created in solution: Debug, DevDb, TestDb, LocalDb.
Three publish profiles were created in project: ...
0
votes
0answers
104 views
Is there a common path for Visual Studio 2012 Build Rules files(.targets, .props)
I've added a Build Customization via the "Visual C++ Build Customization Files" dialog, by selecting the "Find Existing..." button. This results in an absolute path to the .targets/.props files. When ...
0
votes
1answer
105 views
Unit Test project fails running v11 of BuildShadowTask
I have a web application project I'm trying to migrate to .NET 4.5. We're building out of TFS to a build server with VS2010 installed, but that also contains all of the correct reference assemblies ...
1
vote
1answer
377 views
Building WCF Library on CI Machine
UPDATE:
Just an update as we finally got our licensing fixed and installed Visual Studio 2012 on our build agent. As soon as we finished the install everything built perfectly.
Thank you everyone ...
0
votes
0answers
18 views
How to retrieve a IVsBuildPropertyStorage2
From an extension for Visual Studio 2012, I am trying to write a custom MSBuild property to a C# project. I want to avoid using MSBuild APIs directly to edit the project files. Using the ...
0
votes
1answer
147 views
Async Targeting Pack without Visual Studio 2012 on BuildServer
I am using a Buildserver which does not have installed any Visual Studio. I use TeamCity with msbuild Agent to Building my application. Now, I need to use the Async Targeting Pack for using ...
0
votes
1answer
137 views
Click-once publish addtional files stopped with VS 2012
I customized my project using a solution I found in this question:
Why doesn't ClickOnce in Visual Studio deploy content files from dependent assemblies?
<ItemGroup>
...
4
votes
1answer
1k views
How to use command line msbuild to deploy VS2012 Web Site project without precompiling it?
I've inherited a very large VS2012 web site project (not web application) and am trying to automate it's deployment. There are tons of circular references in the project so to get it to precompile ...
1
vote
1answer
54 views
Deploying MEF components with the web project that consumes them
My apologies if this has already been covered, but I can't find an answer anywhere.
I've got an MVC4 web application that consumes MEF components. These components live in another project within ...

