This might be at daft question but i've nerver done it before...
We are a few developers on the same project with local development environments and now we want to set up shared VPP folders on a external server.
I have created a VPP folder on the external "testserver" but how do i configure it to be shared by all the developers in the project?
They need to modify episerver.config file. Find virtual path section and change the physicalPath value.
e.g.
<add showInFileManager="false"
virtualName="Page Files"
virtualPath="~/PageFiles/"
bypassAccessCheck="false"
indexingServiceCatalog="Web"
physicalPath="\\test_server\VPP\PageFiles"
name="SitePageFiles"
type="EPiServer.Web.Hosting.VirtualPathVersioningProvider,EPiServer"
/>
Related
Is is possible to have a workspace (in VSC or any IDE) whereby said local project/folder contains 1 more or more sub folders that are cloud based (such as iCloud)?
I have a standard create react app "project" stored locally on my iMac (home) and when I need to use the same files on my work computer (macbook) I have either committed said changes (SourceTree -> remote) or taken copy via USB). Is there a way to sync just "some" folders to iCloud so that they are available from any location? (and also not break git/sourcetree)
Probable easiest to do the whole folder? and ignore \node_modules (like gitignore, nosync) perhaps?
my-app\
my-app\node_modules <- not this folder
my-app\public
my-app\src
The more I investigate this issue, the more it appears not to be possible in the context above, even using symbolic links and the .nosync file extn. :-(
My company has shared resources and uses *.shtml to keep the same look and feel across the intranet. When developing on my local machine, how can I tell webpack-dev-server to use it? It downloads the file instead.
I have two applications refering to a dll (A.dll). The dlls are refernced from both application's local directories. Application1 use Settings.Default to store string to the dll (A.dll). Will those strigs that are saved to settings of A.Dll by Applciation1 be accessible to Application2?
As far as I'm aware, each application setting should have it's own settings file. Furthermore, if you have used a user-scoped settings, then each user from each application will have their own settings files.
You can find full details from the following links:
Using Settings in C#
Application Settings Overview
I have the following situation:
WPF Application
I know about the different ways of deploying. (CAO, InstallShield, ..)
Project includs some Report Files (.rdlc) which
are used by calling them via Path - Right now in a Subdirectory of my PRojectfolder
The Paths are defined in Settings
BUT:
I absolutely dont know how to handle this situation during and after Installation.
If I provide the rdlc files as additional files, how can I automatically change the path, after installation (so that the App can find them), because I dont know before the path of the new client machine. Or do I misunderstood an the InstallShield is managing this files and paths automatically!
Can anybody help me with the right strategy (I am not looking for Code)!?!?
Thanky in Advance
In the installer, place the files relative to INSTALLDIR directory. INSTALLDIR can be modified by the user during installation. You may want to save the value in a registry or a configuration file. For registry, create the required hive and key and set its value to [INSTALLDIR]. For configuration file, you would need to write a custom action that modifies the file with the chosen INSTALLDIR.
I have a very strange behavior, when I build my project on my laptop. I get this error:
The "ValidateSilverlightFrameworkPaths" task was not found. Check the following: 1.) The name of the task in the project file is the same as the name of the task class. 2.) The task class is "public" and implements the Microsoft.Build.Framework.ITask interface. 3.) The task is correctly declared with in the project file, or in the *.tasks files located in the "C:\Windows\Microsoft.NET\Framework\v4.0.30319" directory.
I have no idea whats this all about - i have never setup any task in a project file. I don't know anything about a Task nor declared something in the framework dir. I can build on my other machine. The project is shared via TFS.
Google doesn't give me enough results to work with.
I already deleted everythin on my laptop and pulled it from the TFS again.
Have you some tips, how to solve this error?
Greetings
It seems as if you do not have silverlight installed on your laptop and you try to build a silverlight project.
As the name suggests, the ValidateSilverlightFrameworkPaths taks is part of the build process for Silverlight projects. The mentioned target file is located at
C:\Program Files (x86)\MSBuild\Microsoft\Silverlight\v5.0\Microsoft.Silverlight.Common.targets
the assembly containing the task class is named Microsoft.Silverlight.Build.Tasks.dll and resides in the same directory.