vikingcode

Results 14 comments of vikingcode

Its actually `NuGet.Targets`, in this case, that was the issue. `LogStandardErrorAsError` was throwing an error, removed that from the Exec statements in NuGet.Targets, and it works again.

Trying to find the root cause, but mono doesn't seem to be picking up `@(MainAssembly)`, which makes ILRepack fail. Edit: `MainAssembly` is a MSBuild property. Maybe xbuild doesn't have it....

Changing it from `@(MainAssembly)` to `$(OutputPath)$(AssemblyName).$(OutputType)` with ILRepack is not overly elegant, but works with both mono and .net

There is/will be issues with various file system access where slashes are involve. ie `fileSystem.File.WriteAllText(Path.Combine(directory, @"_layouts\layout.cshtml"), Properties.RazorWiki.Layout);` uses the 'wrong way' slash for *nix. It should be something like `(Path.Combine(directory,...

Build issues on linux: - case sensitivity in various paths relating to nuget. ie, needs to be NuGet.exe - Permission errors on restoring, +777 (I know this is bad?) to...

As of fb35bacee31d82cdb3361193639e3d47323b81d4 it compiles and embeds on Ubuntu, but it does not work as it cannot find NDesk (`Could not load file or assembly 'NDesk.Options ...'`

Alright, there is an issue with embedding via IL-Repack, which I'm trying to figure out. It has nothing to do with NDesk - if I drop NDesks file in, it'll...

Without VS for Linux, it's much harder to debug this, but paths are wonky which in turn is causing most of the issues once its actually running (if I disable...

So this is where my branch is up to: It works on mono/ubuntu, including taste (web server) given the following constraints - MonoDevelop hates me and only half works -...

The changes to nuget (ie, dropping Targets) made this much easier. The _problem_ I have now is basically mono itself, be it on Windows or Linux. I can embed all...