Norbert Virth
Norbert Virth
I think the default for `cacheDirectory` is invalid. [It points into the web app's content root](https://github.com/ligershark/WebOptimizer/blob/master/src/WebOptimizer.Core/WebOptimizerConfig.cs#L40) ([If later fixed, I've found it in this commit](https://github.com/ligershark/WebOptimizer/blob/cd44f7cbff7a45ed4555ba2a9412f5713f86ffbb/src/WebOptimizer.Core/WebOptimizerConfig.cs#L40) ) A production web application...
I think yes. But I'm not sure. But then I can't remember setting up any folder credentials for `HttpPostedFileBase` to work in the old ASP.NET MVC. That saves the uploaded...
@VictorioBerra `Path.GetTempPath()` does not always work. On one of our new test servers, we've seen this log now: System.UnauthorizedAccessException: Access to the path 'C:\Windows\TEMP' is denied.
@tafs7 could you solve it since? I'm in the same boat...
So moving things around in common targets is a very dangerous change, and it won't happen. What about then changing in [Microsoft.Common.CurrentVersion.targets](https://github.com/dotnet/msbuild/blob/v17.1.0/src/Tasks/Microsoft.Common.CurrentVersion.targets#L3456) CompileDependsOn (and CleanDependsOn, and the others) like this?...
I do have, if this was asked from me
We have smg like `Common.targets`, which is ``-ed in many `.csproj`s. This `.targets` hooks in custom Targets into `CompileDependsOn` and `CleanDependsOn`. Previously, this `Common.targets` was only included in old style...
I will try using `AfterTargets="Compile"` in future developments.
We recently updated TSC from 4.1.2 to 4.4.4, where we could see diffing the built JS before and after the TSC upgrade, that lot of `__spread` usages have been replaced...