Menu
  • HOME
  • TAGS

Visual Studio Project dependencies in svn

svn,visual-studio-2012,project-reference

I looked into my .sln file (it's a solution with two projects one depending on the other) and here is a section that I found: Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GspService", "GspService\GspService.csproj", "{7D9D9F3A-9405-43E9-900F-A00DF28019A5}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GspTest", "WcfTestApp\GspTest.csproj", "{430F45E5-A6C6-4B0F-8D48-DC99F6D082DA}" ProjectSection(ProjectDependencies) = postProject {7D9D9F3A-9405-43E9-900F-A00DF28019A5} = {7D9D9F3A-9405-43E9-900F-A00DF28019A5}...

Impact of adding dll reference vs project reference

c#,.net,visual-studio-2013,project-reference,dll-reference

Yes, there is potentially a huge impact depending on how you have your CI set up. The solution to this is to group logical sections of your application (data access, presentation, whatever else) into separate solutions and turn them into NuGet packages. I've had a lot of success combining TFS...

XamlParseException: Could not load file or assembly 'ResourceLibrary, …' or one of its dependencies. The system cannot find the file specified

c#,wpf,visual-studio,using,project-reference

This question is just a reference to myself and to whomever gets here while searching for a solution to this issue. The Copy Local in the reference was set to True but the DLL was not copied to the build folder. Since I used this resource library only in XAML,...