Adding Files to a Project Programmatically VS 2010 - visual-studio-2010

I have build a deployment .exe that minifies and combines JS and CSS files. Everything works great except that when I publish my website these files are not published. This is because these files are added to the proper directories within my project but are not included in the project.
I know there is a option to include all files when publishing, but I don't want to do that. I simply want to be able to programmatically add these couple of JS and CSS files to the solution during the deployment process.

You can try adding a custom MSBuild target to your .csproj that will add the files dynamically to the project during the build process. They won't show up in the IDE, but I think that's what you want. The following target should add a test.css file that would be included in the publish process:
<Target Name="CustomContent" AfterTargets="ResolveReferences">
<ItemGroup>
<Content Include="Content\Styles\test.css"/>
</ItemGroup>
</Target>
You would replace the contents of the Include attribute with the files you want to add to the deployment. You can also change the name of the target to whatever you want. It will need to go in the bottom of your.csproj file, just above the close of the Project element. I verified this in a MVC3 project, but it should also work in ASP.NET projects as well.

I ended up just writing the XML to my csproj file.

Related

How to include files from other project in visual studio

We have two projects in visual studio, first one is workflows which generated sql files by a DSL tool (this is something like Linq2Sql designer which gestates files automatically by every change)
Second one is a Database project,
I want to include the generated sql files in database project, so that when the content regenerated, I wouldn't need to copy paste it in database project.
For this reason, I add existing sql files as Link (Add as link) to database project, the problem is they don't copy in build process, then I get an error about files are not exists.
I found an article about it in http://mattperdeck.com/post/Copying-linked-content-files-at-each-build-using-MSBuild.aspx but that one is not working for me too.
Then I was thinking about including files automatically in my solution by adding something like , but they will be added to the root of the project not in the desired path.
<ItemGroup>
<None Include="..\..\Workflows\*.sql" />
</ItemGroup>
I solved my issue, but I keep it open to get better solutions
I added below code to project file
<Content Include="..\..\Workflows\*.sql">
<Link>Deployment\Post-Deployment\WorkflowDataSync\%(Filename)%(Extension)</Link>
</Content>
And I added this to pre-build event command line in project properties page
xcopy "$(ProjectDir)..\..\Workflows\*.sql" "$(ProjectDir)Deployment\Post-Deployment\WorkflowDataSync" /Y /I

How to overwrite checked in files under TFS from a post-build script in VS2010?

I have a VS2010 solution with a WebForms project that is setup to publish using Web Deploy. There is another WinForms project and a WinForms Setup, whose output I need publishedas well.
Now these setup files are added to the Web project and normally remain checked in. We used to manually replace them before.
I tried writing a post-build script on the WebClient to copy from the Setup project and replace older versions but ran in to the 'Access Denied' issue since the old setup files were checked in.
Question:
Is there a better way to include files in Web Deploy publish that are not part of the project?
If not, is there a way to auto-check-out these files so they can be overwritten using a batch script?
Is there a better way to include files in Web Deploy publish that are not part of the project?
Yes. Web Deploy copies your web application's files to a temporary folder before it deploys (or packages) them. Your best bet would be to hook into that event and copy your setup files into the temporary directory structure.
<!-- This goes in your publish profile (or ProjectName.wpp.targets if you don't
have the Azure SDK or VS 2012 installed) -->
<PropertyGroup>
<PipelineCollectFilesPhaseDependsOn>
CollectWindowsFormsApp;
$(PipelineCollectFilesPhaseDependsOn);
</PipelineCollectFilesPhaseDependsOn>
</PropertyGroup>
<Target Name="CollectWindowsFormsApp">
<ItemGroup>
<FilesForPackagingFromProject Include="$(SolutionDir)YourWindowsFormsApp\bin\debug\YourWindowsFormsApp.msi">
<DestinationRelativePath>App_Data\YourWindowsFormsApp.msi</DestinationRelativePath>
</FilesForPackagingFromProject>
</ItemGroup>
</Target>

Is there an automated way of updating a Visual Studio project file to contain all files in the source tree?

We have one project file (unit tests) that has lots of files in it. The files are arranged on disk in sub folders and we have folders in the project that matches these.
Every time we merge in from one of our many working branches, we have to update this project file by hand to add all new unit test files, as merging it never works.
So how to I avoid having to add the new files to each folder in the project by hand.
Yes. The project file is an msbuild file and the files to compile are an ItemGroup. You can change the item group to be a wildcard like so.
<ItemGroup>
<Compile Include="*.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
To recurse change the wildcard to "**\*.cs"
This is entirely an msbuild thing - You'll probably lose intellisence and Visual studio will probably reformat if you add a file manually.

Storing source files outside project file directory in Visual Studio C++ 2009

Visual Studio projects assumes all files belonging to the project are situated in the same directory as the project file, or one underneath it.
For a particular project (in the non-Visual Studio sense) this is not what I want. I want to store the MSVC-specific files in another folder, because there might be other ways to build the application as well, for example with SCons. Also all the stuff MSVC splurts out clutters the source directory.
Example:
/source
/scons
/msvc <- here is where I want my MSVC-specific stuff
I can add the files, in Explorer, to the source directory manually, and then link them in Visual Studio with the project. It's not the end of the world, but it annoys me a bit that Visual Studio tries to dictate the folder structure of my project.
I was looking through the schemas for the project files but realized that this annoying assumption is in the IDE and not the format of the project files.
Do someone know a neater way to solve this than manually linking files to the project from the source directory?
I use this sometimes, pretty sure it's what you want:
make sure the Show All Files option is on in your solution explorer.
create a symlink that targets your source directory and put the link at the same level as your project, or even lower if you want finer control. The command is mklink /j target source
For the example project structure you show, you'd run mklink /msvc/source /source and in the project the source directory will show up as if it was in the project dir (well, actually it is). Additional bonus: adding new items through VS also automatically puts them in the right directory.
You can add files with links like this, they are searchable, view-able, but they do not checkout if you try to change them, also visual studio leaves the wildcards in place:
<ItemGroup>
<Content Include="..\Database Schema\Views\*.sql">
<Link>Views\*.sql</Link>
</Content>
</ItemGroup>
This goes inside the .proj file.

How do I add an existing directory tree to a project in Visual Studio?

The issue is simple really. Instead of creating folders in Visual Studio, I create a directory structure for my project on the file system. How do I include all the folders and files in a project, keeping the structure?
If I "Add Existing File" on a folder named Services and navigate to a file in the directory structure .. Services > AccountManagement > CreateAccount.cs, it appears in Visual Studio like so: Services > CreateAccount.cs. I do not want this.
I have an entire directory structure worked out already, as I am mimicking our client developers using the same structure for organization. How do I add all the folders and files to the project in Visual Studio? Or do I have to do what most Microsoft users do and "put up with it" and recreate each and every folder through Visual Studio?
You need to put your directory structure in your project directory. And then click "Show All Files" icon in the top of Solution Explorer toolbox. After that, the added directory will be shown up. You will then need to select this directory, right click, and choose "Include in Project."
You can also drag and drop the folder from Windows Explorer onto your Visual Studio solution window.
In Visual Studio 2015, this is how you do it.
If you want to automatically include all descendant files below a specific folder:
<Content Include="Path\To\Folder\**" />
This can be restricted to include only files within the path specified:
<Content Include="Path\To\Folder\*.*" />
Or even only files with a specified extension:
<Content Include="Path\To\Folder\*.jpg" >
Copy & Paste.
To Add a folder, all the sub-directories, and files we can also Copy and Paste.
For example we can:
Right click in Windows explorer on the folder, and Copy on the folder with many files and folders.
Then in Visual Studio Solution explorer, right click on the destination folder and click paste.
Optional add to TFS; Then in the top folder right click and check in to TFS to check in all sub-folders and files.
You can use a symbolic link. This makes modifying the file in one project modify it in the other (as it's actually the same file).
To do this:
Open cmd prompt as administrator
mklink /d [current project directory name] [directory in other project it should point to]
This has it's drawbacks and pitfalls, but I use it on occasion for duplicate libraries that need different names.
Edit for Anoop:
Steps to add to Visual Studio:
Create link in the project folder using the steps above.
In Visual Studio... select project in Solution Explorer.
At the top of Solution Explorer... click the Show All Files button (may need to click it twice if already active).
The link will now show in your project... right-click and choose Include In Project.
These are the steps I follow and works for a couple different projects.
To expand on Yuchen's answer, you can include files and paths as a link. This is not the same thing as adding the existing items because it doesn't make an extra copy in your project's folder structure. It is useful if you want one canonical folder / file etc to be used in a lot of different places but you only want to maintain one version/copy of it.
Here is an example of what you can add to a *.csproj file to create the link
<Compile Include="$(Codez)\z.Libraries\Common\Strings\RegexExtensions.cs">
<Link>Helpers\RegexExtensions.cs</Link>
</Compile>
<Compile Include="..\..\z.Libraries\MoreLINQ\MoreLinq\ExceptBy.cs">
<Link>Helpers\ExceptBy.cs</Link>
</Compile>
<Content Include="C:\Codez\Libs\Folder\OtherFolder\**\*.*">
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
$(Codez) is a Windows Environment variable I defined, you can use the built-in Environment variables in the same manner.
The last example group is a bunch of content files I need in the final output. See https://stackoverflow.com/a/11808911/492 and other answers & links there for more on that.
More MSBuild info at https://msdn.microsoft.com/en-us/library/bb629388.aspx
In Visual Studio 2017, you switch between Solution View and Folder View back and forth. I think this is a better option, because it will keep the solution cleaner. I use this to edit .gitignore, .md files, etc.
I think I found a way to do this with the Compile Include=".\Code***.cs"
What I wanted is to include code recursively under my Code folder.
Here is the project file sample.
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0" DefaultTargets="BuildTarget">
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Autogen</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="#(Compile)" />
<Compile Include=".\Code\**\*.cs" />
</ItemGroup>
<Target Name="BuildTarget">
<Message Text="Build selected" Importance="high"/>
</Target>
</Project>
In Visual Studio 2013, I couldn't get "Include in Project" to work when right-clicking on a folder. What did work is expanding the folder, selecting all the files then choosing "Include in Project". It was quite tedious as you have to do each folder one by one (but at least you can do all files in each folder in one go), and it appears to store the file path (you can see this by viewing properties on the file and looking at the "Relative Path" option.)
I am hoping to use this to deploy some data files in a Visual Studio Installer project, and it seems to pick up the included files and preserve their paths.
Visual Studio 2017 and newer support a new lightweight .csproj format which has come to be known as "SDK format". One of several advantages of this format is that instead of containing a list of files and folders which are included, files are wildcard included by default. Therefore, with this new format, your files and folders - added in Explorer or on the command line - will get picked up automatically!
The SDK format .csproj file currently works with the following project types:
Class library projects
Console apps
ASP.NET Core web apps
.NET Core projects of any type
To use the new format, create a new .NET Core or .NET Standard project. Because the templates haven't been updated for the full .NET Framework even in Visual Studio 2019, to create a .NET class library choose the .NET Standard Library template, and then edit the project file to target the framework version of your choice (the new style project format can be edited inside Visual Studio - just right click the project in the Solution Explorer and select "Edit project file"). For example:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net46</TargetFramework>
</PropertyGroup>
</Project>
Further reading:
Old csproj to new csproj: Visual Studio 2017 upgrade guide
Demystifying the SDK Project
MSDN: Additions to the csproj format for .NET Core
I found no answer to my satisfaction, so I figured out myself.
Here is the answer to you if you want to add external source codes to your project and don't want to copy over the entire codes. I have many dependencies on other gits and they are updated hourly if not minutely. I can't do copy every hour to sync up. Here is what you need to do.
Assume this is structure:
/root/projA/src
/root/projA/includes
/root/projB/src
/root/projB/includes
/root/yourProj/src
/root/yourProj/includes
Start your VS solution.
Right-click the project name right below the Solution.
Then click the "Add", "New Filter", put the name "projA" for projA.
Right-click on the "projA", click "Add", "New Filter", enter name "src"
Right-click on the "projA", click "Add", "New Filter", enter name "includes"
Right-click "projA"/"src", click "Add", "Existing Item", then browse to the /root/projA/src to add all source codes or one by one for the ones you want.
Do same for "projA"/"includes"
Do same for projB.
Now the external/existing projects outside yours are present in your solution/project. The VS will compile them together.
Here is an trick. Since the projA and projB are virtual folders under your project, the compiler may not find the projA/includes.
If it doesn't find the projA/includes, then right click the project, select the "Properties".
Navigate to "C/C++". Edit "Additional Include Directories", add your projA/include as such "../projA/includes", relative path.
One caveat, if there are duplicated include/header files, the "exclude from project" on the "Header file" doesn't really work. It's a bug in VS.
As far as I can tell, the only way to do this in VS2010 is akin to the drag and drop method. Right click the solution to which you want to add a project. The application menu will have an add ... item. Opening that, you find that one of the options is to add an existing project to the solution.
In the dialog box that opens, navigate to the folder containing the project file for the solution and select it. VS will, as part of importing that project file, also import the entire directory and, I assume any subordinate directories which are part of that project.
As this does require an existing project file, it won't be impossible to import a directory tree until that tree has been converted to a project.

Resources