Make Trusted MSI Setup Project in Visual Studio?
By : Samuel Aritonang
Date : March 29 2020, 07:55 AM
Any of those help I have both VS2008 and VS2010 Setup projects that create .MSI files. On server 2008, I get warnings that the apps are not "trusted". How can I bake-in trust for the apps I build with Visual Studio? , I think they have to be digitally signed.
|
How to get Project Location in Visual Studio Project Template?
By : 何鎮華
Date : March 29 2020, 07:55 AM
To fix the issue you can do Since I do not need my custom targets when instanciating a project I solved this with a condition: code :
<Import Project="..\Deployment\custom.targets" Condition="exists('..\Deployment\custom.targets')" />
|
How to get Visual Studio Project (which is loaded in solution explorer) location via a Visual Studio Addin?
By : 0x3044
Date : March 29 2020, 07:55 AM
seems to work fine Using the GetDirectoryName function in the System.IO.Path namespace should get you what you need. code :
public String SolutionPath()
{
return Path.GetDirectoryName(_applicationObject.Solution.FullName);
}
|
Visual Studio 2010 create project with the same name and location that old removed project
By : Sam Churney
Date : March 29 2020, 07:55 AM
seems to work fine Navigate to the folder on the file system and manually delete the old project directory.
|
TFS Not Asking for Location to save Project and Not Saving Correct Project Name (Visual Studio 2015)
By : Jeet
Date : March 29 2020, 07:55 AM
Hope this helps When you create a project in VS, you can select or browse the Location to choose your local location:
|