Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSC : error CS7038: Failed to emit module #4196

Closed
ohelmer opened this issue Jul 29, 2015 · 24 comments · Fixed by #4807
Closed

CSC : error CS7038: Failed to emit module #4196

ohelmer opened this issue Jul 29, 2015 · 24 comments · Fixed by #4807
Assignees
Labels
Area-Compilers Bug Tenet-Compatibility Violation of forwards/backwards compatibility in a design-time piece.
Milestone

Comments

@ohelmer
Copy link

ohelmer commented Jul 29, 2015

After installing Visual Studio 2015 and building my project I receive the error "CSC : error CS7038: Failed to emit module".

However my solution is building fine in Visual Studio 2013.

ASP.NET webforms project in .NET 4.0

@svick
Copy link
Contributor

svick commented Jul 29, 2015

As was already mentioned on Stack Overflow you need to provide enough information for people to replicate your issue. Without that, I think it's unlikely anyone will be able to help you.

@gafter gafter added Area-Compilers Need More Info The issue needs more information to proceed. labels Jul 30, 2015
@rhysgodfrey
Copy link

I think I'm seeing the same problem.

I've managed to isolate the issue below, unfortunately can currently only reproduce using a Third Party library which I'm unable to share freely, will continue working to try and recreate or get permission to share with you privately.

For me the issue occurs when calling a method on an interface which has two overrides defined, one accepting just an int, the other accepting a Guid and an object with a default value.

For example:

public interface IRepository
{
        Item Get(Guid contentId);

        Item Get(int threadId, ItemGetOptions options = null);
}

Class names altered to make less specific to third party domain, other methods removed for brevity

From a new Class Library project named FailedToEmitModuleExample, using .NET Framework 4.5, I've created a class like so:

public class Tester
{
        private readonly IRepository _repository;

        public void DoSomething()
        {
            var result = _repository.Get(123);
        }
}

This fails to build giving the following error message:

CSC : error CS7038: Failed to emit module 'FailedToEmitModuleExample'.

This only occurs in Visual Studio 2015 RTM (14.0.23107.0 D14REL).

The same project builds correctly in Visual Studio 2015 RC (14.0.22823.1 D14REL) and Visual Studio 2013 (12.0.31101.00 Update 4).

With Diagnostic logging enabled for MSBuild this is the Output snippet for the CSC task:

1>Set Property: NoWarn=;1701;1702
1>Set Property: NoWarn=;1701;1702;2008
1>Set Property: UseSharedCompilation=true
1>Using "Csc" task from assembly "C:\Program Files\MSBuild\14.0\bin\Microsoft.Build.Tasks.CodeAnalysis.dll".
1>Task "Csc" (TaskId:18)
1>  Task Parameter:CodeAnalysisRuleSet=C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset (TaskId:18)
1>  Task Parameter:DebugType=full (TaskId:18)
1>  Task Parameter:DefineConstants=DEBUG;TRACE (TaskId:18)
1>  Task Parameter:DisabledWarnings=;1701;1702;2008 (TaskId:18)
1>  Task Parameter:EmitDebugInformation=True (TaskId:18)
1>  Task Parameter:ErrorEndLocation=True (TaskId:18)
1>  Task Parameter:ErrorReport=prompt (TaskId:18)
1>  Task Parameter:FileAlignment=512 (TaskId:18)
1>  Task Parameter:HighEntropyVA=True (TaskId:18)
1>  Task Parameter:NoConfig=True (TaskId:18)
1>  Task Parameter:NoStandardLib=True (TaskId:18)
1>  Task Parameter:Optimize=False (TaskId:18)
1>  Task Parameter:OutputAssembly=obj\Debug\FailedToEmitModuleExample.dll (TaskId:18)
1>  Task Parameter:Prefer32Bit=False (TaskId:18)
1>  Task Parameter:PreferredUILang=en-US (TaskId:18)
1>  Task Parameter:
1>      References=
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\git\Misc\FailedToEmitModuleThirdParty\FailedToEmitModuleExample\lib\ThirdParty.Api.dll
1>                  CopyLocal=true
1>                  FusionName=ThirdParty.Api, Version=8.5.3.44741, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\lib\ThirdParty.Api.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=ThirdParty.Api
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=8.5.3.44741
1>          C:\git\Misc\FailedToEmitModuleThirdParty\FailedToEmitModuleExample\lib\ThirdParty.Components.dll
1>                  CopyLocal=true
1>                  FusionName=ThirdParty.Components, Version=8.5.3.44741, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\lib\ThirdParty.Components.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=ThirdParty.Components
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=8.5.3.44741 (TaskId:18)
1>  Task Parameter:
1>      Sources=
1>          IRepository.cs
1>          Tester.cs
1>          Properties\AssemblyInfo.cs
1>          C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs
1>          obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
1>          obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
1>          obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs (TaskId:18)
1>  Task Parameter:SubsystemVersion=6.00 (TaskId:18)
1>  Task Parameter:TargetType=Library (TaskId:18)
1>  Task Parameter:UseHostCompilerIfAvailable=True (TaskId:18)
1>  Task Parameter:UseSharedCompilation=True (TaskId:18)
1>  Task Parameter:Utf8Output=True (TaskId:18)
1>  Task Parameter:WarningLevel=4 (TaskId:18)
1>  C:\Program Files\MSBuild\14.0\bin\csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll" /reference:C:\git\Misc\FailedToEmitModuleThirdParty\FailedToEmitModuleExample\lib\ThirdParty.Api.dll /reference:C:\git\Misc\FailedToEmitModuleThirdParty\FailedToEmitModuleExample\lib\ThirdParty.Components.dll /debug+ /debug:full /filealign:512 /optimize- /out:obj\Debug\FailedToEmitModuleExample.dll /ruleset:"C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset" /subsystemversion:6.00 /target:library /utf8output IRepository.cs Tester.cs Properties\AssemblyInfo.cs "C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs" obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs (TaskId:18)
1>  Microsoft (R) Visual C# Compiler version 1.0.0.50618 (TaskId:18)
1>  Copyright (C) Microsoft Corporation. All rights reserved. (TaskId:18)
1>CSC : error CS7038: Failed to emit module 'FailedToEmitModuleExample'.
1>C:\git\Misc\FailedToEmitModuleThirdParty\FailedToEmitModuleExample\FailedToEmitModuleExample\Tester.cs(12,40,12,51): warning CS0649: Field 'Tester._repository' is never assigned to, and will always have its default value null
1>Done executing task "Csc" -- FAILED. (TaskId:18)

Third Party DLL Name Changed

Interestingly the following compiles (replacing the int argument with a Guid):

public class Tester
    {
        private readonly IForumThreads _repository;

        public void DoSomething()
        {
            var result = _repository.Get(Guid.Empty);
        }
    }

Also, calling other methods with overloads on the interface compiles correctly:

public interface IRepository
{
        Item Get(Guid contentId);

        Item Get(int threadId, ItemGetOptions options = null);

        PagedList<Item> List();

        PagedList<Item> List(ListOptions options);
}

Class names altered to make less specific to third party domain, other methods removed for brevity

public class Tester
{
        private readonly IForumThreads _repository;

        public void DoSomething()
        {
            var result = _repository.List();
        }
}

Hope this makes sense. Let me know if there is any other information that would be useful and I'll continue looking at a standalone recreation of this issue.

@thomaslevesque
Copy link
Member

I've managed to isolate the issue below, unfortunately can currently only reproduce using a Third Party library which I'm unable to share freely, will continue working to try and recreate or get permission to share with you privately.

Is this third party library obfuscated? According to this answer on StackOverflow, the problem might be related to obfuscation.

@rhysgodfrey
Copy link

Yes the DLL being referenced is obfuscated using Smart Assembly, would suggest that it is the culprit.

Unfortunately I can't (and imagine others who run into this) can't upgrade SmartAssembly and rebuild as I don't have the source :)

@ohelmer
Copy link
Author

ohelmer commented Aug 3, 2015

We use Smart Assembly also. And I have problems with parameters with default values. After an upgrade to SmartAssembly 6.9 the problem is gone.

@gafter gafter added Resolution-Answered The question has been answered and removed Need More Info The issue needs more information to proceed. labels Aug 7, 2015
@gafter
Copy link
Member

gafter commented Aug 7, 2015

Closing as you appear to have found the source of the issue.

@gafter gafter closed this as completed Aug 7, 2015
@rhysgodfrey
Copy link

Hi @gafter,

I have confirmed this is fixed by using Smart Assembly 6.9, this example solution shows an example.

Not sure how wide ranging this issue is (pretty specific set of circumstances), but would have thought in most cases where an assembly is obfuscated, it would have been provided by a third party vendor, rather than the user experiencing the problem, so fixing may not be as simple as just upgrading SmartAssembly, but rather liaising with the vendor and getting a fix from them.

I'm currently speaking to the vendor we are experiencing this issue with.

Thanks, Rhys

@jaredpar jaredpar reopened this Aug 24, 2015
@jaredpar jaredpar self-assigned this Aug 24, 2015
@jaredpar jaredpar added Bug Tenet-Compatibility Violation of forwards/backwards compatibility in a design-time piece. and removed Resolution-Answered The question has been answered labels Aug 24, 2015
@gafter gafter added this to the 1.1 milestone Aug 24, 2015
@jaredpar
Copy link
Member

This is a duplicate of internal bug 1203205

jaredpar added a commit to jaredpar/roslyn that referenced this issue Aug 28, 2015
The native compiler handled corrupted default parameter values by
substituting in default(T).  It's unclear if this was intentional
behavior in the compiler or not.

Either way though obfuscators took advantage of this behavior and at
least one prominent one will corrupt default parameter values when the
value is null.  Enough prominent libraries have shipped using such
obfuscators that it is a blocker to upgrading.  Hence we need to emulate
the native compiler behavior here.

This change is a bit large because I needed to update the test resources
with a corrupted DLL in order to test out the changes.

closes dotnet#4196
@KallDrexx
Copy link

Is there any indication on when and how this fix will be released? Will it be in a VS 2015 update 1?

It's preventing one of our projects from being compiled in VS 2015.

Thanks,

@jaredpar
Copy link
Member

jaredpar commented Sep 9, 2015

@KallDrexx this fix will be a part of VS 2015 update 1. If you'd like to unblock a single project which is affected by this bug then you can do the following:

  1. Open the project in Visual Studio (2013 or 2015)
  2. Open the NuGet Console (Tools -> NuGet Package Manager -> Package Manager Console).
  3. Run the following: Install-package Microsoft.Net.Compilers -version 1.1.0-beta1-20150727-01 -prerelease

After that build in VS 2015 should succeed.

What this command is doing is simply patching the csc used to compile that specific project with the version packaged in Microsoft.Net.Compilers. This is a build between VS 2015 RTM and Update 1 which includes this fix.

This is a non-RTM build though so the usual beta software caveats apply. But it's also the version we are using to compile Roslyn right now in our repo (we apply the patch to every project) so it's fairly stable.

@KallDrexx
Copy link

Very much appreciated, thank you!

@rhysgodfrey
Copy link

Hi @jaredpar, I've tried adding the nuget package to the example repository I linked to earlier, but I'm still getting the same error.

I've tried closing the solution/vs, but it doesn't make any difference.

Any idea what I might be missing?

@jaredpar
Copy link
Member

@rhysgodfrey I just tried this on that repo and I was able to work around the build error. Here is a commit which demonstrates the changes that came from running the NuGet install on the project. Can you compare it to what you are seeing locally?

jaredpar/FailedToEmitModuleExample@8551436

Couple of items to note:

  • We just released a brand new toolset last week. This is the one I used in that commit. It's possible the fix didn't make it into the previous toolset and hence upgrading the package would fix your solution.
  • I deleted two references in the project. They DLLs weren't in the repo and they didn't seem necessary demonstrate the problem. I removed them to get the extra warnings out of the build window.

BTW: really appreciate you going through the time to make that repo to demo the problem. Made it super easy to validate for us 😄

@rhysgodfrey
Copy link

No worries, anything to make it easier :) Apologies for leaving the old references in.

I've just tried again with your branch and still getting the error :(

Using Visual Studio 14.0.23107.0 D14REL. Detailed build log is below.

1>Project 'FailedToEmitModuleExample' is not up to date. Missing output file 'C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\bin\Debug\FailedToEmitModuleExample.dll'.
All packages are already installed and there is nothing to restore.
1>------ Build started: Project: FailedToEmitModuleExample, Configuration: Debug Any CPU ------
1>Build started 14/09/2015 22:11:38.
1>Environment at start of build:
1>ALLUSERSPROFILE = C:\ProgramData
1>APPDATA = C:\Users\rgodfrey\AppData\Roaming
1>CommonProgramFiles = C:\Program Files\Common Files
1>COMPUTERNAME = MAC101778
1>ComSpec = C:\windows\system32\cmd.exe
1>DNX_HOME = %USERPROFILE%\.dnx
1>FP_NO_HOST_CHECK = NO
1>HOMEDRIVE = H:
1>HOMEPATH = \
1>HOMESHARE = \\ukohome02.mcr.local\home\rgodfrey
1>LOCALAPPDATA = C:\Users\rgodfrey\AppData\Local
1>LOGONSERVER = \\YRK2K12DC01
1>MSBuildLoadMicrosoftTargetsReadOnly = true
1>NUMBER_OF_PROCESSORS = 4
1>OS = Windows_NT
1>Path = C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\NativeBinaries\x86;C:\Ruby22\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\OpenCL SDK\3.0\bin\x86;C:\Program Files\CREDANT\Shield v7.3\;C:\Program Files\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\nodejs\;C:\windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Skype\Phone\;C:\Users\rgodfrey\.dnx\bin;C:\Users\rgodfrey\AppData\Local\Code\bin;C:\Users\rgodfrey\AppData\Roaming\npm;C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\tools
1>PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
1>PkgDefApplicationConfigFile = C:\Users\rgodfrey\AppData\Local\Microsoft\VisualStudio\14.0\devenv.exe.config
1>PROCESSOR_ARCHITECTURE = x86
1>PROCESSOR_IDENTIFIER = x86 Family 6 Model 69 Stepping 1, GenuineIntel
1>PROCESSOR_LEVEL = 6
1>PROCESSOR_REVISION = 4501
1>ProgramData = C:\ProgramData
1>ProgramFiles = C:\Program Files
1>PSModulePath = \\ukohome02.mcr.local\home\rgodfrey\My Documents\WindowsPowerShell\Modules;C:\windows\system32\WindowsPowerShell\v1.0\Modules\;c:\Program Files\Microsoft Security Client\MpProvider\
1>PUBLIC = C:\Users\Public
1>SESSIONNAME = Console
1>SystemDrive = C:
1>SystemRoot = C:\windows
1>TEMP = C:\Users\rgodfrey\AppData\Local\Temp
1>TMP = C:\Users\rgodfrey\AppData\Local\Temp
1>UATDATA = C:\windows\system32\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77
1>USERDNSDOMAIN = MCR.LOCAL
1>USERDOMAIN = MCR
1>USERNAME = rgodfrey
1>USERPROFILE = C:\Users\rgodfrey
1>VisualStudioDir = \\ukohome02.mcr.local\home\rgodfrey\My Documents\Visual Studio 2015
1>VisualStudioEdition = Microsoft Visual Studio Professional 2015
1>VisualStudioVersion = 14.0
1>VS140COMNTOOLS = C:\Program Files\Microsoft Visual Studio 14.0\Common7\Tools\
1>VSLANG = 1033
1>VSSDK140Install = C:\Program Files\Microsoft Visual Studio 14.0\VSSDK\
1>VSSNSESLNASFLDR = 1
1>windir = C:\windows
1>windows_tracing_flags = 3
1>windows_tracing_logfile = C:\BVTBin\Tests\installpackage\csilogfile.log
1>
1>Initial Properties:
1>_AfterCompileWinFXInternalDependsOn = 
1>        PrepareResourcesForSatelliteAssemblies;
1>        MergeLocalizationDirectives;
1>        AfterCompileWinFX
1>    
1>_CompileTargetNameForLocalType = _CompileTemporaryAssembly
1>_DebugSymbolsProduced = true
1>_DeploymentApplicationManifestIdentity = Native.FailedToEmitModuleExample
1>_DeploymentBuiltUpdateInterval = 0
1>_DeploymentBuiltUpdateIntervalUnits = Days
1>_DeploymentDeployManifestIdentity = FailedToEmitModuleExample.application
1>_DeploymentFileMappingExtension = 
1>_DeploymentTargetApplicationManifestFileName = Native.FailedToEmitModuleExample.manifest
1>_DeploymentUrl = 
1>_DocumentationFileProduced = false
1>_GenerateBindingRedirectsIntermediateAppConfig = obj\Debug\FailedToEmitModuleExample.csproj.FailedToEmitModuleExample.dll.config
1>_GetChildProjectCopyToOutputDirectoryItems = true
1>_OriginalConfiguration = Debug
1>_OriginalPlatform = AnyCPU
1>_ProjectDefaultTargets = Build
1>_RequireMCPass2ForMainAssembly = false
1>_RequireMCPass2ForSatelliteAssemblyOnly = false
1>_ResolveReferenceDependencies = false
1>_ResourceNameInMainAssembly = FailedToEmitModuleExample.g.resources
1>_SGenDllCreated = false
1>_SGenDllName = FailedToEmitModuleExample.XmlSerializers.dll
1>_SGenGenerateSerializationAssembliesConfig = Off
1>AddAdditionalExplicitAssemblyReferences = true
1>AddBuildInfoToAssembly = false
1>AdditionalExplicitAssemblyReferences = System.Core;
1>AllowedReferenceAssemblyFileExtensions = 
1>      .winmd;
1>      .dll;
1>      .exe
1>    
1>AllowedReferenceRelatedFileExtensions = 
1>      .pdb;
1>      .xml;
1>      .pri
1>    
1>ALLUSERSPROFILE = C:\ProgramData
1>AlwaysCompileMarkupFilesInSeparateDomain = true
1>AlwaysUseNumericalSuffixInItemNames = true
1>APPDATA = C:\Users\rgodfrey\AppData\Roaming
1>AppDesignerFolder = Properties
1>AssemblyFoldersSuffix = AssemblyFoldersEx
1>AssemblyName = FailedToEmitModuleExample
1>AssemblySearchPaths = 
1>      {CandidateAssemblyFiles};
1>      ;
1>      {HintPathFromItem};
1>      {TargetFrameworkDirectory};
1>      {Registry:Software\Microsoft\.NETFramework,v4.5,AssemblyFoldersEx};
1>      {AssemblyFolders};
1>      {GAC};
1>      {RawFileName};
1>      bin\Debug\
1>    
1>AssignTargetPathsDependsOn = 
1>AutoUnifyAssemblyReferences = true
1>AvailablePlatforms = Any CPU,x86,x64
1>BaseIntermediateOutputPath = obj\
1>BuildCompileAction = Build
1>BuildDependsOn = 
1>      EntityDeploy;
1>      
1>      BeforeBuild;
1>      CoreBuild;
1>      AfterBuild
1>    
1>    
1>BuildGenerateSourcesAction = Build
1>BuildInfoBinPath = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\BuildInfo
1>BuildInfoTargets = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\BuildInfo\Microsoft.VisualStudio.ReleaseManagement.BuildInfo.targets
1>BuildingInsideVisualStudio = true
1>BuildingOutOfProcess = true
1>BuildingProject = false
1>BuildInParallel = true
1>BuildLinkAction = Build
1>BuildProjectReferences = true
1>BuildSystem = MSBuild
1>BuildTaskAssembly = PresentationBuildTasks, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>BuiltProjectOutputGroupDependsOn = PrepareForBuild
1>CleanDependsOn = 
1>      
1>      BeforeClean;
1>      UnmanagedUnregistration;
1>      CoreClean;
1>      CleanReferencedProjects;
1>      CleanPublishFolder;
1>      AfterClean
1>    ;
1>      EntityClean;
1>    
1>CleanFile = FailedToEmitModuleExample.csproj.FileListAbsolute.txt
1>CodeAnalysisApplyLogFileXsl = false
1>CodeAnalysisFailOnMissingRules = false
1>CodeAnalysisForceOutput = true
1>CodeAnalysisGenerateSuccessFile = true
1>CodeAnalysisIgnoreGeneratedCode = true
1>CodeAnalysisIgnoreInvalidTargets = true
1>CodeAnalysisIgnoreMissingIndirectReferences = false
1>CodeAnalysisInputAssembly = bin\Debug\FailedToEmitModuleExample.dll
1>CodeAnalysisLogFile = bin\Debug\FailedToEmitModuleExample.dll.CodeAnalysisLog.xml
1>CodeAnalysisModuleSuppressionsFile = GlobalSuppressions.cs
1>CodeAnalysisOutputToConsole = false
1>CodeAnalysisOverrideRuleVisibilities = false
1>CodeAnalysisPath = C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\FxCop\
1>CodeAnalysisQuiet = false
1>CodeAnalysisRuleDirectories = ;C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\FxCop\\Rules
1>CodeAnalysisRuleSet = MinimumRecommendedRules.ruleset
1>CodeAnalysisRuleSetDirectories = ;C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets
1>CodeAnalysisSaveMessagesToReport = Active
1>CodeAnalysisSearchGlobalAssemblyCache = true
1>CodeAnalysisStaticAnalysisDirectory = C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\
1>CodeAnalysisSucceededFile = bin\Debug\FailedToEmitModuleExample.dll.lastcodeanalysissucceeded
1>CodeAnalysisSummary = false
1>CodeAnalysisTargets = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\CodeAnalysis\Microsoft.CodeAnalysis.targets
1>CodeAnalysisTimeout = 120
1>CodeAnalysisTreatWarningsAsErrors = false
1>CodeAnalysisUpdateProject = false
1>CodeAnalysisUseTypeNameInSuppression = true
1>CodeAnalysisVerbose = false
1>CommonProgramFiles = C:\Program Files\Common Files
1>CommonTargetsPath = C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets
1>CommonXamlResourcesDirectory = C:\Program Files\MSBuild\14.0\bin\\
1>CompileDependsOn = 
1>        
1>      ResolveReferences;
1>      ResolveKeySource;
1>      SetWin32ManifestProperties;
1>      _GenerateCompileInputs;
1>      BeforeCompile;
1>      _TimeStampBeforeCompile;
1>      CoreCompile;
1>      _TimeStampAfterCompile;
1>      AfterCompile;
1>    ;
1>        _AfterCompileWinFXInternal
1>    
1>CompileLicxFilesDependsOn = 
1>CompileTargetNameForTemporaryAssembly = CompileTemporaryAssembly
1>ComputeIntermediateSatelliteAssembliesDependsOn = 
1>      CreateManifestResourceNames
1>    
1>COMPUTERNAME = MAC101778
1>ComReferenceExecuteAsTool = false
1>ComReferenceNoClassMembers = false
1>ComSpec = C:\windows\system32\cmd.exe
1>Configuration = Debug
1>ConfigurationName = Debug
1>ConsiderPlatformAsProcessorArchitecture = true
1>ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths
1>ContinueOnError = false
1>CoreBuildDependsOn = 
1>      BuildOnlySettings;
1>      PrepareForBuild;
1>      PreBuildEvent;
1>      ResolveReferences;
1>      PrepareResources;
1>      ResolveKeySource;
1>      Compile;
1>      ExportWindowsMDFile;
1>      UnmanagedUnregistration;
1>      GenerateSerializationAssemblies;
1>      CreateSatelliteAssemblies;
1>      GenerateManifests;
1>      GetTargetPath;
1>      PrepareForRun;
1>      UnmanagedRegistration;
1>      IncrementalClean;
1>      PostBuildEvent
1>    
1>CoreCleanDependsOn = 
1>CoreCompileDependsOn = 
1>        GenerateCompiledExpressionsTempFile;
1>        
1>        DesignTimeXamlMarkupCompilation;
1>        
1>          DesignTimeMarkupCompilation;
1>          _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet
1>      
1>    
1>    
1>CoreResGenDependsOn = 
1>CreateCustomManifestResourceNamesDependsOn = 
1>CreateHardLinksForCopyAdditionalFilesIfPossible = false
1>CreateManifestResourceNamesDependsOn = 
1>CreateSatelliteAssembliesDependsOn = 
1>      _GenerateSatelliteAssemblyInputs;
1>      ComputeIntermediateSatelliteAssemblies;
1>      GenerateSatelliteAssemblies
1>    
1>CscToolExe = csc.exe
1>CscToolPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools
1>CSharpCoreTargetsPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools\Microsoft.CSharp.Core.targets
1>CSharpTargetsPath = C:\Program Files\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets
1>CurrentSolutionConfigurationContents = <SolutionConfiguration>
1><ProjectConfiguration Project="{4f41e5a5-cc3c-4b40-8046-87b1ce4c5ce6}" AbsolutePath="C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj">Debug|AnyCPU</ProjectConfiguration>
1><ProjectConfiguration Project="{438f379a-9aee-4596-9f78-9692d75cf165}" AbsolutePath="C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample.Obfuscated\FailedToEmitModuleExample.Obfuscated.csproj">Debug|AnyCPU</ProjectConfiguration>
1></SolutionConfiguration>
1>CustomAfterMicrosoftCommonProps = C:\Program Files\MSBuild\v14.0\Custom.After.Microsoft.Common.props
1>CustomAfterMicrosoftCommonTargets = C:\Program Files\MSBuild\v14.0\Custom.After.Microsoft.Common.targets
1>CustomAfterMicrosoftCSharpTargets = C:\Program Files\MSBuild\v14.0\Custom.After.Microsoft.CSharp.targets
1>CustomBeforeMicrosoftCommonProps = C:\Program Files\MSBuild\v14.0\Custom.Before.Microsoft.Common.props
1>CustomBeforeMicrosoftCommonTargets = C:\Program Files\MSBuild\v14.0\Custom.Before.Microsoft.Common.targets
1>CustomBeforeMicrosoftCSharpTargets = C:\Program Files\MSBuild\v14.0\Custom.Before.Microsoft.CSharp.targets
1>DebugSymbols = true
1>DebugSymbolsProjectOutputGroupDependsOn = 
1>DebugType = full
1>DefaultLanguageSourceExtension = .cs
1>DeferredValidationErrorsFileName = obj\Debug\\AC2C1ABA-CCF6-44D4-8127-588FD4D0A860-DeferredValidationErrors.xml
1>DefineCommonCapabilities = true
1>DefineCommonItemSchemas = true
1>DefineCommonReferenceSchemas = true
1>DefineConstants = DEBUG;TRACE
1>DelaySign = 
1>DeploymentType = Installed
1>DesignTimeIntermediateOutputPath = obj\Debug\InProcessTempFiles\
1>DesignTimeResolveAssemblyReferencesDependsOn = 
1>      GetFrameworkPaths;
1>      GetReferenceAssemblyPaths;
1>      ResolveReferences
1>    
1>DevEnvDir = C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\
1>DNX_HOME = %USERPROFILE%\.dnx
1>DocumentationProjectOutputGroupDependsOn = 
1>EmbeddedWin32Manifest = 
1>EntityDeployDependsOn = 
1>EntityDeployIntermediateResourcePath = obj\Debug\edmxResourcesToEmbed\
1>ErrorEndLocation = true
1>ErrorReport = prompt
1>ExpandSDKAllowedReferenceExtensions = 
1>      .winmd;
1>      .dll
1>    
1>ExpandSDKReferencesDependsOn = 
1>      ResolveSDKReferences
1>    
1>FileAlignment = 512
1>FindInvalidProjectReferencesDependsOn = 
1>      GetReferenceTargetPlatformMonikers
1>    
1>FP_NO_HOST_CHECK = NO
1>Framework20Dir = @(_TargetFramework20DirectoryItem)
1>Framework30Dir = @(_TargetFramework30DirectoryItem)
1>Framework35Dir = @(_TargetFramework35DirectoryItem)
1>Framework40Dir = @(_TargetFramework40DirectoryItem)
1>FrameworkDir = @(_TargetFramework40DirectoryItem)
1>FrameworkPathOverride = C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5
1>FrameworkRegistryBase = Software\Microsoft\.NETFramework
1>FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem)
1>FrameworkSDKRoot = C:\Program Files\Microsoft SDKs\Windows\v10.0A\
1>FullReferenceAssemblyNames = Full
1>GenerateBuildInfoConfigFile = false
1>GenerateCompiledExpressionsTempFilePathForEditing = obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
1>GenerateCompiledExpressionsTempFilePathForTypeInfer = obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
1>GenerateCompiledExpressionsTempFilePathForValidation = obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
1>GeneratedFileExtension = .g.cs
1>GenerateManifestsDependsOn = 
1>      SetWin32ManifestProperties;
1>      GenerateApplicationManifest;
1>      GenerateDeploymentManifest
1>    
1>GenerateTargetFrameworkAttribute = true
1>GetCopyToOutputDirectoryItemsDependsOn = 
1>      AssignTargetPaths;
1>      _SplitProjectReferencesByFileExistence
1>    
1>GetFrameworkPathsDependsOn = 
1>GetReferenceAssemblyPathsDependsOn = 
1>        ;
1>        GetWinFXPath
1>    
1>GetTargetPathDependsOn = 
1>GetTargetPathWithTargetPlatformMonikerDependsOn = ; GetTargetPath
1>HighEntropyVA = true
1>HOMEDRIVE = H:
1>HOMEPATH = \
1>HOMESHARE = \\ukohome02.mcr.local\home\rgodfrey
1>HostInBrowser = false
1>ImplicitlyExpandDesignTimeFacades = true
1>ImplicitlyExpandDesignTimeFacadesDependsOn = 
1>      ;
1>      GetReferenceAssemblyPaths
1>    
1>ImportByWildcardAfterMicrosoftCommonProps = true
1>ImportByWildcardAfterMicrosoftCommonTargets = true
1>ImportByWildcardAfterMicrosoftCSharpTargets = true
1>ImportByWildcardAfterMicrosoftNetFrameworkProps = true
1>ImportByWildcardAfterMicrosoftNetFrameworkTargets = true
1>ImportByWildcardBeforeMicrosoftCommonProps = true
1>ImportByWildcardBeforeMicrosoftCommonTargets = true
1>ImportByWildcardBeforeMicrosoftCSharpTargets = true
1>ImportByWildcardBeforeMicrosoftNetFrameworkProps = true
1>ImportByWildcardBeforeMicrosoftNetFrameworkTargets = true
1>ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true
1>ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true
1>ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true
1>ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkProps = true
1>ImportUserLocationsByWildcardAfterMicrosoftNetFrameworkTargets = true
1>ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true
1>ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true
1>ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true
1>ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkProps = true
1>ImportUserLocationsByWildcardBeforeMicrosoftNetFrameworkTargets = true
1>ImportXamlTargets = true
1>IncludeServerNameInBuildInfo = false
1>IntermediateOutputPath = obj\Debug\
1>IsLibrary = true
1>Language = C#
1>LoadTimeSensitiveProperties = 
1>      ;
1>    
1>LoadTimeSensitiveTargets = 
1>      ;
1>      XamlMarkupCompilePass1;
1>    
1>LOCALAPPDATA = C:\Users\rgodfrey\AppData\Local
1>LocalizationDirectivesToLocFile = None
1>LOGONSERVER = \\YRK2K12DC01
1>MarkupCompilePass2ForMainAssemblyDependsOn = 
1>                     GenerateTemporaryTargetAssembly;
1>                     MarkupCompilePass2;
1>                     AfterMarkupCompilePass2;
1>                     CleanupTemporaryTargetAssembly
1>       
1>MaxTargetPath = 100
1>MergedOutputCodeAnalysisFile = vc.nativecodeanalysis.all.xml
1>MicrosoftCommonPropsHasBeenImported = true
1>MsAppxPackageTargets = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\AppxPackage\Microsoft.AppXPackage.Targets
1>MSBuildAllProjects = ;C:\Program Files\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets;C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.props;C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj;C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets;C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets;C:\Program Files\MSBuild\14.0\bin\Microsoft.Xaml.targets
1>MSBuildAssemblyVersion = 14.0
1>MSBuildBinPath = C:\Program Files\MSBuild\14.0\bin
1>MSBuildExtensionsPath = C:\Program Files\MSBuild
1>MSBuildExtensionsPath32 = C:\Program Files\MSBuild
1>MSBuildFrameworkToolsPath = C:\windows\Microsoft.NET\Framework\v4.0.30319\
1>MSBuildFrameworkToolsPath32 = C:\windows\Microsoft.NET\Framework\v4.0.30319\
1>MSBuildFrameworkToolsRoot = C:\windows\Microsoft.NET\Framework\
1>MSBuildLoadMicrosoftTargetsReadOnly = true
1>MSBuildNodeCount = 4
1>MSBuildProgramFiles32 = C:\Program Files
1>MSBuildProjectDefaultTargets = Build
1>MSBuildProjectDirectory = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample
1>MSBuildProjectDirectoryNoRoot = git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample
1>MSBuildProjectExtension = .csproj
1>MSBuildProjectFile = FailedToEmitModuleExample.csproj
1>MSBuildProjectFullPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj
1>MSBuildProjectName = FailedToEmitModuleExample
1>MSBuildRuntimeVersion = 4.0.30319
1>MSBuildStartupDirectory = C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE
1>MSBuildToolsPath = C:\Program Files\MSBuild\14.0\bin
1>MSBuildToolsPath32 = C:\Program Files\MSBuild\14.0\bin\
1>MSBuildToolsRoot = C:\Program Files\MSBuild\
1>MSBuildToolsVersion = 14.0
1>MSBuildUserExtensionsPath = C:\Users\rgodfrey\AppData\Local\Microsoft\MSBuild
1>MsTestToolsTargets = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\TeamTest\Microsoft.TeamTest.targets
1>NetFrameworkPropsPath = C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.props
1>NetFrameworkTargetsPath = C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets
1>NoCompilerStandardLib = true
1>NuGetPackageImportStamp = 
1>NUMBER_OF_PROCESSORS = 4
1>Optimize = false
1>OS = Windows_NT
1>OSVersion = 5.1.2600.0
1>OutDir = bin\Debug\
1>OutputPath = bin\Debug\
1>OutputType = Library
1>OverwriteReadOnlyFiles = false
1>Path = C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\NativeBinaries\x86;C:\Ruby22\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\OpenCL SDK\3.0\bin\x86;C:\Program Files\CREDANT\Shield v7.3\;C:\Program Files\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files\nodejs\;C:\windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Skype\Phone\;C:\Users\rgodfrey\.dnx\bin;C:\Users\rgodfrey\AppData\Local\Code\bin;C:\Users\rgodfrey\AppData\Roaming\npm
1>PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
1>PkgDefApplicationConfigFile = C:\Users\rgodfrey\AppData\Local\Microsoft\VisualStudio\14.0\devenv.exe.config
1>Platform = AnyCPU
1>PlatformName = AnyCPU
1>PlatformTargetAsMSBuildArchitecture = CurrentArchitecture
1>PlatformTargetAsMSBuildArchitectureExplicitlySet = false
1>PostBuildEventDependsOn = 
1>PreBuildEventDependsOn = 
1>Prefer32Bit = false
1>PreferredUILang = en-US
1>PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata
1>PrepareForRunDependsOn = 
1>      CopyFilesToOutputDirectory
1>    ;RunCodeAnalysis
1>PrepareResourceNamesDependsOn = 
1>                    AssignWinFXEmbeddedResource;
1>                    
1>      AssignTargetPaths;
1>      SplitResourcesByCulture;
1>      CreateManifestResourceNames;
1>      CreateCustomManifestResourceNames
1>    
1>      
1>PrepareResourcesDependsOn = 
1>      ValidationExtension;
1>      ExpressionBuildExtension;
1>      
1>      XamlMarkupCompilePass1;
1>      XamlMarkupCompilePass2;
1>      
1>                MarkupCompilePass1;
1>                AfterMarkupCompilePass1;
1>                MarkupCompilePass2ForMainAssembly;
1>                FileClassification;
1>                MainResourcesGeneration;
1>                
1>      PrepareResourceNames;
1>      ResGen;
1>      CompileLicxFiles
1>    
1>       
1>    
1>    
1>PROCESSOR_ARCHITECTURE = x86
1>PROCESSOR_IDENTIFIER = x86 Family 6 Model 69 Stepping 1, GenuineIntel
1>PROCESSOR_LEVEL = 6
1>PROCESSOR_REVISION = 4501
1>ProcessorArchitecture = msil
1>ProcessorArchitectureAsPlatform = AnyCPU
1>ProgramData = C:\ProgramData
1>ProgramFiles = C:\Program Files
1>ProjectDesignTimeAssemblyResolutionSearchPaths = 
1>      {CandidateAssemblyFiles};
1>      ;
1>      {HintPathFromItem};
1>      {TargetFrameworkDirectory};
1>      {Registry:Software\Microsoft\.NETFramework,v4.5,AssemblyFoldersEx};
1>      {RawFileName};
1>      C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\bin\Debug\
1>    
1>ProjectDir = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\
1>ProjectExt = .csproj
1>ProjectFileName = FailedToEmitModuleExample.csproj
1>ProjectFlavor = Client
1>ProjectGuid = {4F41E5A5-CC3C-4B40-8046-87B1CE4C5CE6}
1>ProjectName = FailedToEmitModuleExample
1>ProjectPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj
1>PSModulePath = C:\windows\system32\WindowsPowerShell\v1.0\Modules\;c:\Program Files\Microsoft Security Client\MpProvider\
1>PUBLIC = C:\Users\Public
1>PublishableProject = 
1>PublishBuildDependsOn = 
1>            BuildOnlySettings;
1>            PrepareForBuild;
1>            ResolveReferences;
1>            PrepareResources;
1>            ResolveKeySource;
1>            PrepareResourcesForSatelliteAssemblies;
1>            GenerateSerializationAssemblies;
1>            CreateSatelliteAssemblies;
1>        
1>PublishDependsOn = 
1>      _DeploymentUnpublishable
1>    
1>PublishDir = bin\Debug\app.publish\
1>PublishOnlyDependsOn = 
1>      SetGenerateManifests;
1>      PublishBuild;
1>      BeforePublish;
1>      GenerateManifests;
1>      CopyFilesToOutputDirectory;
1>      _CopyFilesToPublishFolder;
1>      _DeploymentGenerateBootstrapper;
1>      ResolveKeySource;
1>      _DeploymentSignClickOnceDeployment;
1>      AfterPublish
1>    
1>PublishPipelineCollectFilesCore = 
1>            ;
1>            CollectFilesFromBuildInfoConfigFile;
1>        
1>RebuildDependsOn = 
1>      BeforeRebuild;
1>      Clean;
1>      Build;
1>      AfterRebuild;
1>    
1>ReportingServicesTargets = C:\Program Files\MSBuild\Microsoft\VisualStudio\v14.0\ReportingServices\Microsoft.ReportingServices.targets
1>ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen
1>ResGenExecuteAsTool = false
1>ResolveAssemblyReferencesDependsOn = 
1>      GetFrameworkPaths;
1>      GetReferenceAssemblyPaths;
1>      PrepareForBuild;
1>      ResolveSDKReferences;
1>      ExpandSDKReferences;
1>    
1>ResolveReferencesDependsOn = 
1>      
1>      
1>      BeforeResolveReferences;
1>      AssignProjectConfiguration;
1>      ResolveProjectReferences;
1>      FindInvalidProjectReferences;
1>      ResolveNativeReferences;
1>      ResolveAssemblyReferences;
1>      GenerateBindingRedirects;
1>      ResolveComReferences;
1>      AfterResolveReferences
1>    ;
1>      ImplicitlyExpandDesignTimeFacades
1>    ;
1>      ResolveTestReferences
1>    
1>ResolveSDKReferencesDependsOn = 
1>      GetInstalledSDKLocations
1>    
1>RootNamespace = FailedToEmitModuleExample
1>RunAfterInstall = true
1>RunCodeAnalysisDependsOn = ;Compile
1>RunCodeAnalysisInputs = bin\Debug\FailedToEmitModuleExample.dll
1>RunCodeAnalysisOnce = FALSE
1>RunDependsOn = 
1>RunNativeCodeAnalysisInputs = 
1>SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames
1>SDK35ToolsPath = C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\
1>SDK40ToolsPath = C:\Program Files\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\
1>SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences
1>SDKReferenceDirectoryRoot = C:\Users\rgodfrey\AppData\Local\Microsoft SDKs;C:\Program Files\Microsoft SDKs
1>SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs
1>SESSIONNAME = Console
1>SGenFilesOutputGroupDependsOn = 
1>SGenShouldGenerateSerializer = true
1>SGenUseKeep = false
1>SGenUseProxyTypes = true
1>ShouldMarkCertainSDKReferencesAsRuntimeOnly = true
1>SkipCopyUnchangedFiles = true
1>SolutionDir = C:\git\Misc\jaredpar\FailedToEmitModuleExample\
1>SolutionExt = .sln
1>SolutionFileName = FailedToEmitModuleExample.sln
1>SolutionName = FailedToEmitModuleExample
1>SolutionPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample.sln
1>SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths
1>SubsystemVersion = 6.00
1>SystemDrive = C:
1>SystemRoot = C:\windows
1>TargetCulture = *
1>TargetDeployManifestFileName = FailedToEmitModuleExample.application
1>TargetDir = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\bin\Debug\
1>TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem)
1>TargetedRuntimeVersion = v4.0.30319
1>TargetedSDKArchitecture = msil
1>TargetedSDKConfiguration = Debug
1>TargetExt = .dll
1>TargetFileName = FailedToEmitModuleExample.dll
1>TargetFrameworkAsMSBuildRuntime = CLR4
1>TargetFrameworkIdentifier = .NETFramework
1>TargetFrameworkMoniker = .NETFramework,Version=v4.5
1>TargetFrameworkMonikerAssemblyAttributesPath = C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs
1>TargetFrameworkSDKToolsDirectory = C:\Program Files\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\
1>TargetFrameworkVersion = v4.5
1>TargetName = FailedToEmitModuleExample
1>TargetPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\bin\Debug\FailedToEmitModuleExample.dll
1>TargetPlatformDisplayName = Windows 7.0
1>TargetPlatformIdentifier = Windows
1>TargetPlatformMoniker = Windows,Version=7.0
1>TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows
1>TargetPlatformSdkPath = 
1>TargetPlatformVersion = 7.0
1>TargetRuntime = Managed
1>TaskKeyToken = 31bf3856ad364e35
1>TaskVersion = 4.0.0.0
1>TEMP = C:\Users\rgodfrey\AppData\Local\Temp
1>TMP = C:\Users\rgodfrey\AppData\Local\Temp
1>UATDATA = C:\windows\system32\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77
1>UnmanagedRegistrationDependsOn = 
1>UnmanagedUnregistrationDependsOn = 
1>UpgradeSubsetToProfile = true
1>UseCommonOutputDirectory = false
1>UseHostCompilerIfAvailable = true
1>USERDNSDOMAIN = MCR.LOCAL
1>USERDOMAIN = MCR
1>USERNAME = rgodfrey
1>USERPROFILE = C:\Users\rgodfrey
1>UseSharedCompilation = false
1>UseSourcePath = true
1>Utf8Output = true
1>VbcToolExe = vbc.exe
1>VbcToolPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools
1>VCTargetsPath = C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V140\
1>VCTargetsPath10 = C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\
1>VCTargetsPath11 = C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V110\
1>VCTargetsPath12 = C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\
1>VCTargetsPath14 = C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V140\
1>Version = 1.0.0.0
1>VisualBasicCoreTargetsPath = C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools\Microsoft.VisualBasic.Core.targets
1>VisualStudioDir = \\ukohome02.mcr.local\home\rgodfrey\My Documents\Visual Studio 2015
1>VisualStudioEdition = Microsoft Visual Studio Professional 2015
1>VisualStudioVersion = 14.0
1>VS140COMNTOOLS = C:\Program Files\Microsoft Visual Studio 14.0\Common7\Tools\
1>VSIDEResolvedNonMSBuildProjectOutputs = <VSIDEResolvedNonMSBuildProjectOutputs />
1>VSLANG = 1033
1>VSSDK140Install = C:\Program Files\Microsoft Visual Studio 14.0\VSSDK\
1>WarningLevel = 4
1>WebReference_EnableLegacyEventingModel = false
1>WebReference_EnableProperties = true
1>WebReference_EnableSQLTypes = true
1>windir = C:\windows
1>windows_tracing_flags = 3
1>windows_tracing_logfile = C:\BVTBin\Tests\installpackage\csilogfile.log
1>WindowsSDK80Path = C:\Program Files\Windows Kits\8.1\
1>WMSJSProject = WJProject
1>WMSJSProjectDirectory = JavaScript
1>WorkflowBuildExtensionAssemblyName = Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>WorkflowBuildExtensionKeyToken = 31bf3856ad364e35
1>WorkflowBuildExtensionVersion = 4.0.0.0
1>XamlBuildTaskAssemblyName = XamlBuildTask, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>XamlBuildTaskLocation = C:\windows\Microsoft.NET\Framework\v4.0.30319\
1>XamlBuildTaskPath = C:\windows\Microsoft.NET\Framework\v4.0.30319\
1>XamlDebuggingInformation = true
1>XamlGenCodeFileNames = FailedToEmitModuleExample.csproj.XamlGeneratedCodeFileListAbsolute.txt
1>XamlGenMarkupFileNames = FailedToEmitModuleExample.csproj.XamlGeneratedXamlFileListAbsolute.txt
1>XamlPass2FlagFile = FailedToEmitModuleExample.csproj.XamlPass2Flag.txt
1>XamlRequiresCompilationPass2 = false
1>XamlTemporaryAssemblyName = FailedToEmitModuleExample
1>YieldDuringToolExecution = true
1>
1>Building with tools version "14.0".
1>Target "_CheckForInvalidConfigurationAndPlatform: (TargetId:2)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (entry point):
1>Set Property: _InvalidConfigurationMessageText=The OutputPath property is not set for project 'FailedToEmitModuleExample.csproj'.  Please check to make sure that you have specified a valid combination of Configuration and Platform for this project.  Configuration='Debug'  Platform='AnyCPU'.
1>Set Property: _InvalidConfigurationMessageText=The OutputPath property is not set for project 'FailedToEmitModuleExample.csproj'.  Please check to make sure that you have specified a valid combination of Configuration and Platform for this project.  Configuration='Debug'  Platform='AnyCPU'.  This error may also appear if some other project is trying to follow a project-to-project reference to this project, this project has been unloaded or is not included in the solution, and the referencing project does not build using the same or an equivalent Configuration or Platform.
1>Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
1>Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
1>Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Message" (TaskId:2)
1>  Task Parameter:Text=Configuration=Debug (TaskId:2)
1>  Task Parameter:Importance=Low (TaskId:2)
1>  Configuration=Debug (TaskId:2)
1>Done executing task "Message". (TaskId:2)
1>Task "Message" (TaskId:3)
1>  Task Parameter:Text=Platform=AnyCPU (TaskId:3)
1>  Task Parameter:Importance=Low (TaskId:3)
1>  Platform=AnyCPU (TaskId:3)
1>Done executing task "Message". (TaskId:3)
1>Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('bin\Debug\' != '' and !HasTrailingSlash('bin\Debug\')).
1>Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj\' != '' and !HasTrailingSlash('obj\')).
1>Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('obj\Debug\' != '' and !HasTrailingSlash('obj\Debug\')).
1>Done building target "_CheckForInvalidConfigurationAndPlatform" in project "FailedToEmitModuleExample.csproj".: (TargetId:2)
1>Target "EntityDeploy" skipped, due to false condition; ('@(EntityDeploy)' != '') was evaluated as ('' != '').
1>Target "BeforeBuild: (TargetId:3)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "Build" depends on it):
1>Done building target "BeforeBuild" in project "FailedToEmitModuleExample.csproj".: (TargetId:3)
1>Target "BuildOnlySettings: (TargetId:4)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreBuild" depends on it):
1>Set Property: BuildingProject=true
1>Done building target "BuildOnlySettings" in project "FailedToEmitModuleExample.csproj".: (TargetId:4)
1>Target "GetFrameworkPaths: (TargetId:5)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareForBuild" depends on it):
1>Added Item(s): _TargetFramework40DirectoryItem=C:\windows\Microsoft.NET\Framework\v4.0.30319
1>Added Item(s): _TargetFramework35DirectoryItem=C:\windows\Microsoft.NET\Framework\v3.5
1>Added Item(s): _TargetFramework30DirectoryItem=C:\windows\Microsoft.NET\Framework\v3.0
1>Added Item(s): _TargetFramework20DirectoryItem=C:\windows\Microsoft.NET\Framework\v2.0.50727
1>Added Item(s): _TargetedFrameworkDirectoryItem=C:\windows\Microsoft.NET\Framework\v4.0.30319
1>Added Item(s): _CombinedTargetFrameworkDirectoriesItem=C:\windows\Microsoft.NET\Framework\v4.0.30319
1>Set Property: TargetFrameworkDirectory=C:\windows\Microsoft.NET\Framework\v4.0.30319
1>Set Property: TargetFrameworkSDKDirectory=C:\Program Files\Microsoft SDKs\Windows\v10.0A\
1>Added Item(s): _TargetFrameworkSDKDirectoryItem=C:\Program Files\Microsoft SDKs\Windows\v10.0A\
1>Done building target "GetFrameworkPaths" in project "FailedToEmitModuleExample.csproj".: (TargetId:5)
1>Target "GetWinFXPath" skipped, due to false condition; (('@(Page)' != '' or '@(ApplicationDefinition)' != '' or '@(Resource)' != '') and ('$(GetWinFXNativePath)' != '' or '$(GetWinFXWoWPath)' != '' )) was evaluated as (('' != '' or '' != '' or '' != '') and ('' != '' or '' != '' )).
1>Target "GetReferenceAssemblyPaths: (TargetId:6)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareForBuild" depends on it):
1>Set Property: TargetFrameworkDirectory=
1>Using "GetReferenceAssemblyPaths" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "GetReferenceAssemblyPaths" (TaskId:4)
1>  Task Parameter:TargetFrameworkMoniker=.NETFramework,Version=v4.5 (TaskId:4)
1>  Output Property: _TargetFrameworkDirectories=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\ (TaskId:4)
1>  Output Property: _FullFrameworkReferenceAssemblyPaths=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\ (TaskId:4)
1>  Output Property: TargetFrameworkMonikerDisplayName=.NET Framework 4.5 (TaskId:4)
1>Done executing task "GetReferenceAssemblyPaths". (TaskId:4)
1>Set Property: TargetFrameworkDirectory=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\;;
1>Set Property: RemoveAssemblyFoldersIfNoTargetFramework=true
1>Added Item(s): DesignTimeFacadeDirectoryRoots=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\
1>Added Item(s): DesignTimeFacadeDirectories=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades\
1>Set Property: TargetFrameworkDirectory=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\;;;C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades\
1>Done building target "GetReferenceAssemblyPaths" in project "FailedToEmitModuleExample.csproj".: (TargetId:6)
1>Target "AssignLinkMetadata" skipped, due to false condition; ( '$(SynthesizeLinkMetadata)' == 'true' ) was evaluated as ( '' == 'true' ).
1>Target "EnsureNuGetPackageBuildImports: (TargetId:7)" in project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareForBuild" depends on it):
1>Set Property: ErrorText=This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
1>Task "Error" skipped, due to false condition; (!Exists('..\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\Microsoft.Net.Compilers.props')) was evaluated as (!Exists('..\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\Microsoft.Net.Compilers.props')).
1>Done building target "EnsureNuGetPackageBuildImports" in project "FailedToEmitModuleExample.csproj".: (TargetId:7)
1>Target "PrepareForBuild: (TargetId:8)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreBuild" depends on it):
1>Using "FindAppConfigFile" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "FindAppConfigFile" (TaskId:5)
1>  Task Parameter:PrimaryList=packages.config (TaskId:5)
1>  Task Parameter:TargetPath=FailedToEmitModuleExample.dll.config (TaskId:5)
1>  Output Item(s): AppConfigWithTargetPath= (TaskId:5)
1>Done executing task "FindAppConfigFile". (TaskId:5)
1>Using "MakeDir" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "MakeDir" (TaskId:6)
1>  Task Parameter:
1>      Directories=
1>          bin\Debug\
1>          obj\Debug\ (TaskId:6)
1>Done executing task "MakeDir". (TaskId:6)
1>Done building target "PrepareForBuild" in project "FailedToEmitModuleExample.csproj".: (TargetId:8)
1>Target "PreBuildEvent" skipped, due to false condition; ('$(PreBuildEvent)'!='') was evaluated as (''!='').
1>Target "BeforeResolveReferences: (TargetId:9)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Done building target "BeforeResolveReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:9)
1>Target "AssignProjectConfiguration: (TargetId:10)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Set Property: OnlyReferenceAndBuildProjectsEnabledInSolutionConfiguration=true
1>Set Property: ShouldUnsetParentConfigurationAndPlatform=true
1>Using "AssignProjectConfiguration" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignProjectConfiguration" (TaskId:7)
1>  Task Parameter:CurrentProject=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj (TaskId:7)
1>  Task Parameter:CurrentProjectConfiguration=Debug (TaskId:7)
1>  Task Parameter:CurrentProjectPlatform=AnyCPU (TaskId:7)
1>  Task Parameter:OutputType=Library (TaskId:7)
1>  Task Parameter:ResolveConfigurationPlatformUsingMappings=False (TaskId:7)
1>  Task Parameter:SolutionConfigurationContents=<SolutionConfiguration>
1>  <ProjectConfiguration Project="{4f41e5a5-cc3c-4b40-8046-87b1ce4c5ce6}" AbsolutePath="C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj">Debug|AnyCPU</ProjectConfiguration>
1>  <ProjectConfiguration Project="{438f379a-9aee-4596-9f78-9692d75cf165}" AbsolutePath="C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample.Obfuscated\FailedToEmitModuleExample.Obfuscated.csproj">Debug|AnyCPU</ProjectConfiguration>
1>  </SolutionConfiguration> (TaskId:7)
1>  Task Parameter:OnlyReferenceAndBuildProjectsEnabledInSolutionConfiguration=True (TaskId:7)
1>  Task Parameter:ShouldUnsetParentConfigurationAndPlatform=True (TaskId:7)
1>Done executing task "AssignProjectConfiguration". (TaskId:7)
1>Done building target "AssignProjectConfiguration" in project "FailedToEmitModuleExample.csproj".: (TargetId:10)
1>Target "AssignProjectConfiguration" skipped. Previously built successfully.
1>Target "_SplitProjectReferencesByFileExistence: (TargetId:11)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveProjectReferences" depends on it):
1>Task "ResolveNonMSBuildProjectOutput" skipped, due to false condition; ('$(BuildingInsideVisualStudio)'=='true' and '@(ProjectReferenceWithConfiguration)'!='') was evaluated as ('true'=='true' and ''!='').
1>Done building target "_SplitProjectReferencesByFileExistence" in project "FailedToEmitModuleExample.csproj".: (TargetId:11)
1>Target "ResolveProjectReferences: (TargetId:12)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and ('$(BuildingInsideVisualStudio)' == 'true' or '$(BuildProjectReferences)' != 'true') and '$(VisualStudioVersion)' != '10.0' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and ('true' == 'true' or 'true' != 'true') and '14.0' != '10.0' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and ('$(BuildingInsideVisualStudio)' == 'true' or '$(BuildProjectReferences)' != 'true') and '$(VisualStudioVersion)' == '10.0' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and ('true' == 'true' or 'true' != 'true') and '14.0' == '10.0' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingInsideVisualStudio)' != 'true' and '$(BuildProjectReferences)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and 'true' != 'true' and 'true' == 'true' and '' != '').
1>Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingProject)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and 'true' == 'true' and '' != '').
1>Task "Warning" skipped, due to false condition; ('@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceNonexistent)' != '') was evaluated as ('' != '' and '' != '').
1>Done building target "ResolveProjectReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:12)
1>Target "FindInvalidProjectReferences" skipped, due to false condition; ('$(FindInvalidProjectReferences)' == 'true') was evaluated as ('' == 'true').
1>Target "ResolveNativeReferences" skipped, due to false condition; ('@(NativeReference)'!='') was evaluated as (''!='').
1>Target "GetFrameworkPaths" skipped. Previously built successfully.
1>Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "GetInstalledSDKLocations: (TargetId:13)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveSDKReferences" depends on it):
1>Task "GetInstalledSDKLocations" skipped, due to false condition; ('@(SDKReference)' != '') was evaluated as ('' != '').
1>Task "GetInstalledSDKLocations" skipped, due to false condition; ('@(SDKReference)' != '' and '$(SupportWindows81SDKs)' == 'true' and '$(TargetPlatformIdentifierWindows81)' != '' and '$(TargetPlatformVersionWindows81)' != '') was evaluated as ('' != '' and '' == 'true' and '' != '' and '' != '').
1>Task "GetInstalledSDKLocations" skipped, due to false condition; ('@(SDKReference)' != '' and '$(SupportWindowsPhone81SDKs)' == 'true' and '$(TargetPlatformIdentifierWindowsPhone81)' != '' and '$(TargetPlatformVersionWindowsPhone81)' != '') was evaluated as ('' != '' and '' == 'true' and '' != '' and '' != '').
1>Done building target "GetInstalledSDKLocations" in project "FailedToEmitModuleExample.csproj".: (TargetId:13)
1>Target "ResolveSDKReferences: (TargetId:14)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "ResolveSDKReference" skipped, due to false condition; ('@(SDKReference)'!='') was evaluated as (''!='').
1>Done building target "ResolveSDKReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:14)
1>Target "ResolveSDKReferences" skipped. Previously built successfully.
1>Target "ExpandSDKReferences: (TargetId:15)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveAssemblyReferences" depends on it):
1>Task "GetSDKReferenceFiles" skipped, due to false condition; ('@(ResolvedSDKReference)'!='') was evaluated as (''!='').
1>Done building target "ExpandSDKReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:15)
1>Target "ResolveAssemblyReferences: (TargetId:16)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Added Item(s): 
1>    _ReferenceInstalledAssemblyDirectory=
1>        C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\
1>        C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades\
1>Set Property: ResolveAssemblyReferencesStateFile=obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache
1>Set Property: ResolveAssemblyReferencesSilent=false
1>Set Property: ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch=Warning
1>Removed Item(s): Reference=System.Core
1>Added Item(s): 
1>    Reference=
1>        System.Core
1>                Implicit=true
1>Using "ResolveAssemblyReference" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "ResolveAssemblyReference" (TaskId:8)
1>  Task Parameter:
1>      Assemblies=
1>          FailedToEmitModuleExample.Obfuscated.6.8
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>          System
1>          System.Xml.Linq
1>          System.Data.DataSetExtensions
1>          Microsoft.CSharp
1>          System.Data
1>          System.Net.Http
1>          System.Xml
1>          System.Core
1>                  Implicit=true (TaskId:8)
1>  Task Parameter:AssemblyFiles=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll (TaskId:8)
1>  Task Parameter:
1>      TargetFrameworkDirectories=
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades\ (TaskId:8)
1>  Task Parameter:CandidateAssemblyFiles=packages.config (TaskId:8)
1>  Task Parameter:
1>      SearchPaths=
1>          {CandidateAssemblyFiles}
1>          {HintPathFromItem}
1>          {TargetFrameworkDirectory}
1>          {Registry:Software\Microsoft\.NETFramework,v4.5,AssemblyFoldersEx}
1>          {AssemblyFolders}
1>          {GAC}
1>          {RawFileName}
1>          bin\Debug\ (TaskId:8)
1>  Task Parameter:
1>      AllowedAssemblyExtensions=
1>          .winmd
1>          .dll
1>          .exe (TaskId:8)
1>  Task Parameter:
1>      AllowedRelatedFileExtensions=
1>          .pdb
1>          .xml
1>          .pri (TaskId:8)
1>  Task Parameter:TargetProcessorArchitecture=msil (TaskId:8)
1>  Task Parameter:AutoUnify=True (TaskId:8)
1>  Task Parameter:FindSatellites=True (TaskId:8)
1>  Task Parameter:FindSerializationAssemblies=True (TaskId:8)
1>  Task Parameter:FindRelatedFiles=True (TaskId:8)
1>  Task Parameter:Silent=False (TaskId:8)
1>  Task Parameter:TargetFrameworkVersion=v4.5 (TaskId:8)
1>  Task Parameter:TargetFrameworkMoniker=.NETFramework,Version=v4.5 (TaskId:8)
1>  Task Parameter:TargetFrameworkMonikerDisplayName=.NET Framework 4.5 (TaskId:8)
1>  Task Parameter:TargetedRuntimeVersion=v4.0.30319 (TaskId:8)
1>  Task Parameter:StateFile=obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:8)
1>  Task Parameter:FullTargetFrameworkSubsetNames=Full (TaskId:8)
1>  Task Parameter:FullFrameworkFolders=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\ (TaskId:8)
1>  Task Parameter:WarnOrErrorOnTargetArchitectureMismatch=Warning (TaskId:8)
1>  TargetFrameworkMoniker: (TaskId:8)
1>      .NETFramework,Version=v4.5 (TaskId:8)
1>  TargetFrameworkMonikerDisplayName: (TaskId:8)
1>      .NET Framework 4.5 (TaskId:8)
1>  TargetedRuntimeVersion: (TaskId:8)
1>      v4.0.30319 (TaskId:8)
1>  Assemblies: (TaskId:8)
1>      FailedToEmitModuleExample.Obfuscated.6.8 (TaskId:8)
1>          HintPath = '..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll' (TaskId:8)
1>      System (TaskId:8)
1>      System.Xml.Linq (TaskId:8)
1>      System.Data.DataSetExtensions (TaskId:8)
1>      Microsoft.CSharp (TaskId:8)
1>      System.Data (TaskId:8)
1>      System.Net.Http (TaskId:8)
1>      System.Xml (TaskId:8)
1>      System.Core (TaskId:8)
1>  AssemblyFiles: (TaskId:8)
1>      C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll (TaskId:8)
1>  CandidateAssemblyFiles: (TaskId:8)
1>  TargetFrameworkDirectories: (TaskId:8)
1>      C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\,C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Facades\ (TaskId:8)
1>  InstalledAssemblyTables: (TaskId:8)
1>  IgnoreInstalledAssemblyTable: (TaskId:8)
1>      False (TaskId:8)
1>  SearchPaths: (TaskId:8)
1>      {CandidateAssemblyFiles} (TaskId:8)
1>      {HintPathFromItem} (TaskId:8)
1>      {TargetFrameworkDirectory} (TaskId:8)
1>      {Registry:Software\Microsoft\.NETFramework,v4.5,AssemblyFoldersEx} (TaskId:8)
1>      {AssemblyFolders} (TaskId:8)
1>      {GAC} (TaskId:8)
1>      {RawFileName} (TaskId:8)
1>      bin\Debug\ (TaskId:8)
1>  AllowedAssemblyExtensions: (TaskId:8)
1>      .winmd (TaskId:8)
1>      .dll (TaskId:8)
1>      .exe (TaskId:8)
1>  AllowedRelatedFileExtensions: (TaskId:8)
1>      .pdb (TaskId:8)
1>      .xml (TaskId:8)
1>      .pri (TaskId:8)
1>  AppConfigFile: (TaskId:8)
1>       (TaskId:8)
1>  AutoUnify: (TaskId:8)
1>      True (TaskId:8)
1>  CopyLocalDependenciesWhenParentReferenceInGac: (TaskId:8)
1>      True (TaskId:8)
1>  FindDependencies: (TaskId:8)
1>      True (TaskId:8)
1>  TargetProcessorArchitecture: (TaskId:8)
1>      msil (TaskId:8)
1>  StateFile: (TaskId:8)
1>      obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:8)
1>  InstalledAssemblySubsetTables: (TaskId:8)
1>  IgnoreInstalledAssemblySubsetTable: (TaskId:8)
1>      False (TaskId:8)
1>  TargetFrameworkSubsets: (TaskId:8)
1>  FullTargetFrameworkSubsetNames: (TaskId:8)
1>      Full (TaskId:8)
1>  ProfileName: (TaskId:8)
1>       (TaskId:8)
1>  FullFrameworkFolders: (TaskId:8)
1>      C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\ (TaskId:8)
1>  LatestTargetFrameworkDirectories: (TaskId:8)
1>  ProfileTablesLocation: (TaskId:8)
1>  Primary reference "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll". (TaskId:8)
1>      Reference found at search path location "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll". (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null". (TaskId:8)
1>      Resolved file path is "C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll". (TaskId:8)
1>      Reference found at search path location "{HintPathFromItem}". (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Primary reference "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". (TaskId:8)
1>      Resolved file path is "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll". (TaskId:8)
1>      Reference found at search path location "{TargetFrameworkDirectory}". (TaskId:8)
1>          For SearchPath "{TargetFrameworkDirectory}". (TaskId:8)
1>          Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.winmd", but it didn't exist. (TaskId:8)
1>      This reference is not "CopyLocal" because it's a prerequisite file. (TaskId:8)
1>      The ImageRuntimeVersion for this reference is "v4.0.30319". (TaskId:8)
1>  Output Item(s): 
1>      ReferencePath=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0 (TaskId:8)
1>  Output Item(s): 
1>      _ResolveAssemblyReferenceResolvedFiles=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0 (TaskId:8)
1>  Output Item(s): 
1>      ReferenceCopyLocalPaths=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0 (TaskId:8)
1>  Output Item(s): FileWrites=obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:8)
1>  Output Property: DependsOnSystemRuntime=False (TaskId:8)
1>Done executing task "ResolveAssemblyReference". (TaskId:8)
1>Done building target "ResolveAssemblyReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:16)
1>Target "GenerateBindingRedirects" skipped, due to false condition; ('$(AutoGenerateBindingRedirects)' == 'true' and '$(GenerateBindingRedirectsOutputType)' == 'true') was evaluated as ('' == 'true' and '' == 'true').
1>Target "GenerateBindingRedirectsUpdateAppConfig" skipped, due to false condition; ('$(AutoGenerateBindingRedirects)' == 'true' and '$(GenerateBindingRedirectsOutputType)' == 'true' and Exists('$(_GenerateBindingRedirectsIntermediateAppConfig)')) was evaluated as ('' == 'true' and '' == 'true' and Exists('obj\Debug\FailedToEmitModuleExample.csproj.FailedToEmitModuleExample.dll.config')).
1>Target "ResolveComReferences" skipped, due to false condition; ('@(COMReference)'!='' or '@(COMFileReference)'!='') was evaluated as (''!='' or ''!='').
1>Target "AfterResolveReferences: (TargetId:17)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Done building target "AfterResolveReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:17)
1>Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
1>Target "ImplicitlyExpandDesignTimeFacades: (TargetId:18)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.NetFramework.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResolveReferences" depends on it):
1>Task "Message" skipped, due to false condition; ('%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandDesignTimeFacades') was evaluated as ('{HintPathFromItem}' == 'ImplicitlyExpandDesignTimeFacades').
1>Task "Message" skipped, due to false condition; ('%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandDesignTimeFacades') was evaluated as ('{TargetFrameworkDirectory}' == 'ImplicitlyExpandDesignTimeFacades').
1>Task "Message" skipped, due to false condition; ('%(ReferencePath.ResolvedFrom)' == 'ImplicitlyExpandDesignTimeFacades') was evaluated as ('C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll' == 'ImplicitlyExpandDesignTimeFacades').
1>Done building target "ImplicitlyExpandDesignTimeFacades" in project "FailedToEmitModuleExample.csproj".: (TargetId:18)
1>Target "ResolveTestReferences" skipped, due to false condition; ('@(Shadow)'!='') was evaluated as (''!='').
1>Target "ResolveReferences: (TargetId:19)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreBuild" depends on it):
1>Done building target "ResolveReferences" in project "FailedToEmitModuleExample.csproj".: (TargetId:19)
1>Target "ValidationExtension: (TargetId:20)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WorkflowBuildExtensions.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Task "WorkflowBuildMessageTask" skipped, due to false condition; ('$(SkipWorkflowValidation)'!='' and '$(SkipWorkflowValidation)'!='true' and '$(SkipWorkflowValidation)'!='false') was evaluated as (''!='' and ''!='true' and ''!='false').
1>Added Item(s): 
1>    XamlBuildTaskTypeInspectionExtensionName=
1>        Microsoft.Activities.Build.Validation.ValidationBuildExtension
1>                AssemblyName=Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>                Visible=false
1>Done building target "ValidationExtension" in project "FailedToEmitModuleExample.csproj".: (TargetId:20)
1>Target "ExpressionBuildExtension: (TargetId:21)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WorkflowBuildExtensions.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Task "WorkflowBuildMessageTask" skipped, due to false condition; ('$(DisableWorkflowCompiledExpressions)'!='' and '$(DisableWorkflowCompiledExpressions)'!='true' and '$(DisableWorkflowCompiledExpressions)'!='false') was evaluated as (''!='' and ''!='true' and ''!='false').
1>Added Item(s): 
1>    XamlBuildTaskTypeInspectionExtensionName=
1>        Microsoft.Activities.Build.Expressions.ExpressionsBuildExtension
1>                AssemblyName=Microsoft.Activities.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
1>                Visible=false
1>Done building target "ExpressionBuildExtension" in project "FailedToEmitModuleExample.csproj".: (TargetId:21)
1>Target "XamlMarkupCompilePass1" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
1>Target "XamlMarkupCompileReadGeneratedFileList" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
1>Target "XamlMarkupCompileAddFilesGenerated" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
1>Target "XamlMarkupCompilePass2" skipped, due to false condition; ('$(XamlRequiresCompilationPass2)' == 'true' ) was evaluated as ('false' == 'true' ).
1>Target "XamlMarkupCompileReadPass2Flag" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
1>Target "XamlMarkupCompileAddExtensionFilesGenerated" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
1>Target "AddDeferredValidationErrorsFileToFileWrites" skipped, due to false condition; (Exists('$(DeferredValidationErrorsFileName)')) was evaluated as (Exists('obj\Debug\\AC2C1ABA-CCF6-44D4-8127-588FD4D0A860-DeferredValidationErrors.xml')).
1>Target "ReportValidationBuildExtensionErrors" skipped, due to false condition; ('$(SkipWorkflowValidation)' != 'true' and ('@(XamlPage)' != '' or '@(XamlAppDef)' != '')) was evaluated as ('' != 'true' and ('' != '' or '' != '')).
1>Target "MarkupCompilePass1" skipped, due to false condition; ('@(Page)' != '' or '@(ApplicationDefinition)' != '' ) was evaluated as ('' != '' or '' != '' ).
1>Target "AfterMarkupCompilePass1: (TargetId:22)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WinFx.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Done building target "AfterMarkupCompilePass1" in project "FailedToEmitModuleExample.csproj".: (TargetId:22)
1>Target "MarkupCompilePass2ForMainAssembly" skipped, due to false condition; ('$(_RequireMCPass2ForMainAssembly)' == 'true' ) was evaluated as ('false' == 'true' ).
1>Target "FileClassification: (TargetId:23)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WinFx.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Task "FileClassifier" skipped, due to false condition; ('@(GeneratedBaml)' != '' or '@(Resource)' != '' or '@(Font)' != '') was evaluated as ('' != '' or '' != '' or '' != '').
1>Task "Message" skipped, due to false condition; ('$(MSBuildTargetsVerbose)'=='true') was evaluated as (''=='true').
1>Task "Message" skipped, due to false condition; ('$(MSBuildTargetsVerbose)'=='true') was evaluated as (''=='true').
1>Done building target "FileClassification" in project "FailedToEmitModuleExample.csproj".: (TargetId:23)
1>Target "MainResourcesGeneration" skipped, due to false condition; ('@(MainEmbeddedFiles)' != '') was evaluated as ('' != '').
1>Target "AssignWinFXEmbeddedResource" skipped, due to false condition; ('@(WinFXEmbeddedResource)' != '') was evaluated as ('' != '').
1>Target "AssignTargetPaths: (TargetId:24)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResourceNames" depends on it):
1>Using "AssignTargetPath" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignTargetPath" (TaskId:9)
1>  Task Parameter:RootFolder=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:9)
1>Done executing task "AssignTargetPath". (TaskId:9)
1>Task "AssignTargetPath" (TaskId:10)
1>  Task Parameter:RootFolder=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:10)
1>Done executing task "AssignTargetPath". (TaskId:10)
1>Task "AssignTargetPath" (TaskId:11)
1>  Task Parameter:Files=packages.config (TaskId:11)
1>  Task Parameter:RootFolder=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:11)
1>  Output Item(s): 
1>      _NoneWithTargetPath=
1>          packages.config
1>                  OriginalItemSpec=packages.config
1>                  TargetPath=packages.config (TaskId:11)
1>Done executing task "AssignTargetPath". (TaskId:11)
1>Task "AssignTargetPath" (TaskId:12)
1>  Task Parameter:RootFolder=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:12)
1>Done executing task "AssignTargetPath". (TaskId:12)
1>Task "AssignTargetPath" skipped, due to false condition; ('@(_DeploymentBaseManifestWithTargetPath)'=='' and '%(None.Extension)'=='.manifest') was evaluated as (''=='' and '.config'=='.manifest').
1>Done building target "AssignTargetPaths" in project "FailedToEmitModuleExample.csproj".: (TargetId:24)
1>Target "AssignTargetPaths" skipped. Previously built successfully.
1>Target "SplitResourcesByCulture: (TargetId:25)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResourceNames" depends on it):
1>Task "Warning" skipped, due to false condition; ('@(ResxWithNoCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(ResxWithCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(NonResxWithCulture)'!='') was evaluated as (''!='').
1>Task "Warning" skipped, due to false condition; ('@(NonResxWithNoCulture)'!='') was evaluated as (''!='').
1>Using "AssignCulture" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "AssignCulture" (TaskId:13)
1>Done executing task "AssignCulture". (TaskId:13)
1>Done building target "SplitResourcesByCulture" in project "FailedToEmitModuleExample.csproj".: (TargetId:25)
1>Target "CreateManifestResourceNames" skipped, due to false condition; ('@(EmbeddedResource)' != '') was evaluated as ('' != '').
1>Target "CreateCustomManifestResourceNames: (TargetId:26)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResourceNames" depends on it):
1>Done building target "CreateCustomManifestResourceNames" in project "FailedToEmitModuleExample.csproj".: (TargetId:26)
1>Target "PrepareResourceNames: (TargetId:27)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Done building target "PrepareResourceNames" in project "FailedToEmitModuleExample.csproj".: (TargetId:27)
1>Target "ResolveAssemblyReferences" skipped. Previously built successfully.
1>Target "SplitResourcesByCulture" skipped. Previously built successfully.
1>Target "BeforeResGen: (TargetId:28)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResGen" depends on it):
1>Done building target "BeforeResGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:28)
1>Target "CoreResGen: (TargetId:29)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResGen" depends on it):
1>Set Property: GenerateResourceMSBuildArchitecture=CurrentArchitecture
1>Set Property: ResgenToolPath=C:\Program Files\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\
1>Set Property: GenerateResourceMSBuildRuntime=CLR4
1>Task "GenerateResource" skipped, due to false condition; ('%(EmbeddedResource.Type)' == 'Resx' and '%(EmbeddedResource.GenerateResource)' != 'false' and '$(GenerateResourceMSBuildRuntime)' != 'CLR2') was evaluated as ('' == 'Resx' and '' != 'false' and 'CLR4' != 'CLR2').
1>Task "GenerateResource" skipped, due to false condition; ('%(EmbeddedResource.Type)' == 'Resx' and '%(EmbeddedResource.GenerateResource)' != 'false' and '$(GenerateResourceMSBuildRuntime)' == 'CLR2') was evaluated as ('' == 'Resx' and '' != 'false' and 'CLR4' == 'CLR2').
1>Done building target "CoreResGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:29)
1>Target "AfterResGen: (TargetId:30)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "ResGen" depends on it):
1>Done building target "AfterResGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:30)
1>Target "ResGen: (TargetId:31)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PrepareResources" depends on it):
1>Done building target "ResGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:31)
1>Target "CompileLicxFiles" skipped, due to false condition; ('@(_LicxFile)'!='') was evaluated as (''!='').
1>Target "PrepareResources: (TargetId:32)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreBuild" depends on it):
1>Done building target "PrepareResources" in project "FailedToEmitModuleExample.csproj".: (TargetId:32)
1>Target "ResolveKeySource" skipped, due to false condition; ($(SignManifests) == 'true' or $(SignAssembly) == 'true') was evaluated as ( == 'true' or  == 'true').
1>Target "ResolveReferences" skipped. Previously built successfully.
1>Target "ResolveKeySource" skipped, due to false condition; ($(SignManifests) == 'true' or $(SignAssembly) == 'true') was evaluated as ( == 'true' or  == 'true').
1>Target "ResolveComReferences" skipped, due to false condition; ('@(COMReference)'!='' or '@(COMFileReference)'!='') was evaluated as (''!='' or ''!='').
1>Target "ResolveNativeReferences" skipped, due to false condition; ('@(NativeReference)'!='') was evaluated as (''!='').
1>Target "_SetExternalWin32ManifestProperties" skipped, due to false condition; ('$(GenerateClickOnceManifests)'=='true' or '@(NativeReference)'!='' or '@(ResolvedIsolatedComModules)'!='') was evaluated as (''=='true' or ''!='' or ''!='').
1>Target "_SetEmbeddedWin32ManifestProperties: (TargetId:33)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "SetWin32ManifestProperties" depends on it):
1>Set Property: EmbeddedWin32Manifest=
1>Set Property: Win32Manifest=
1>Using "GetFrameworkPath" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "GetFrameworkPath" (TaskId:14)
1>  Output Property: _FrameworkVersion40Path=C:\Windows\Microsoft.NET\Framework\v4.0.30319 (TaskId:14)
1>Done executing task "GetFrameworkPath". (TaskId:14)
1>Set Property: EmbeddedWin32Manifest=C:\Windows\Microsoft.NET\Framework\v4.0.30319\default.win32manifest
1>Done building target "_SetEmbeddedWin32ManifestProperties" in project "FailedToEmitModuleExample.csproj".: (TargetId:33)
1>Target "SetWin32ManifestProperties: (TargetId:34)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "Compile" depends on it):
1>Done building target "SetWin32ManifestProperties" in project "FailedToEmitModuleExample.csproj".: (TargetId:34)
1>Target "_GenerateCompileInputs: (TargetId:35)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "Compile" depends on it):
1>Task "Warning" skipped, due to false condition; ('@(ManifestResourceWithNoCulture)'!='' and '%(ManifestResourceWithNoCulture.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
1>Task "Warning" skipped, due to false condition; ('@(ManifestNonResxWithNoCultureOnDisk)'!='' and '%(ManifestNonResxWithNoCultureOnDisk.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
1>Done building target "_GenerateCompileInputs" in project "FailedToEmitModuleExample.csproj".: (TargetId:35)
1>Target "PrepareForBuild" skipped. Previously built successfully.
1>Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
1>Target "_SetTargetFrameworkMonikerAttribute: (TargetId:36)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "GenerateTargetFrameworkMonikerAttribute" depends on it):
1>Set Property: TargetFrameworkMonikerAssemblyAttributeText=
1>// <autogenerated />
1>using System%3b
1>using System.Reflection%3b
1>[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")]
1>        
1>Done building target "_SetTargetFrameworkMonikerAttribute" in project "FailedToEmitModuleExample.csproj".: (TargetId:36)
1>Target "GenerateTargetFrameworkMonikerAttribute: (TargetId:37)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "BeforeCompile" depends on it):
1>Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files.
1>Input files: C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.targets
1>Output files: C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs
1>Added Item(s): Compile=C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs
1>Done building target "GenerateTargetFrameworkMonikerAttribute" in project "FailedToEmitModuleExample.csproj".: (TargetId:37)
1>Target "GenerateAdditionalSources" skipped, due to false condition; ('@(AssemblyAttributes)' != '' and '$(GenerateAdditionalSources)' == 'true') was evaluated as ('' != '' and '' == 'true').
1>Target "BeforeCompile: (TargetId:38)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "Compile" depends on it):
1>Done building target "BeforeCompile" in project "FailedToEmitModuleExample.csproj".: (TargetId:38)
1>Target "_TimeStampBeforeCompile" skipped, due to false condition; ('$(RunPostBuildEvent)'=='OnOutputUpdated' or ('$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library')) was evaluated as (''=='OnOutputUpdated' or (''=='true' and 'Library'=='library')).
1>Target "GenerateCompiledExpressionsTempFile: (TargetId:39)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WorkflowBuildExtensions.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreCompile" depends on it):
1>Task "WriteLinesToFile" skipped, due to false condition; (!Exists('$(GenerateCompiledExpressionsTempFilePathForEditing)')) was evaluated as (!Exists('obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs')).
1>Task "WriteLinesToFile" skipped, due to false condition; (!Exists('$(GenerateCompiledExpressionsTempFilePathForValidation)')) was evaluated as (!Exists('obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs')).
1>Task "WriteLinesToFile" skipped, due to false condition; (!Exists('$(GenerateCompiledExpressionsTempFilePathForTypeInfer)')) was evaluated as (!Exists('obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs')).
1>Added Item(s): Compile=obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
1>Added Item(s): Compile=obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
1>Added Item(s): Compile=obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
1>Done building target "GenerateCompiledExpressionsTempFile" in project "FailedToEmitModuleExample.csproj".: (TargetId:39)
1>Target "DesignTimeXamlMarkupCompilation: (TargetId:40)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Xaml.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreCompile" depends on it):
1>Task "MakeDir" skipped, due to false condition; ('@(XamlAppDef)' != '') was evaluated as ('' != '').
1>Task "CallTarget" skipped, due to false condition; ('$(BuildingProject)' != 'true' and '@(XamlAppDef)' != '') was evaluated as ('true' != 'true' and '' != '').
1>Done building target "DesignTimeXamlMarkupCompilation" in project "FailedToEmitModuleExample.csproj".: (TargetId:40)
1>Target "CleanInProcessXamlGeneratedFiles" skipped, due to false condition; ('@(XamlAppDef)' != '') was evaluated as ('' != '').
1>Target "DesignTimeMarkupCompilation: (TargetId:41)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WinFx.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreCompile" depends on it):
1>Task "CallTarget" skipped, due to false condition; ('$(BuildingProject)' != 'true') was evaluated as ('true' != 'true').
1>Done building target "DesignTimeMarkupCompilation" in project "FailedToEmitModuleExample.csproj".: (TargetId:41)
1>Target "_ComputeNonExistentFileProperty" skipped, due to false condition; (('$(BuildingInsideVisualStudio)' == 'true') and ('$(BuildingOutOfProcess)' != 'true') and (('$(BuildingProject)' == 'false') or ('$(UseHostCompilerIfAvailable)' == 'true'))) was evaluated as (('true' == 'true') and ('true' != 'true') and (('true' == 'false') or ('true' == 'true'))).
1>Target "ResolveCodeAnalysisRuleSet: (TargetId:42)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.CSharp.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreCompile" depends on it):
1>Using "ResolveCodeAnalysisRuleSet" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "ResolveCodeAnalysisRuleSet" (TaskId:15)
1>  Task Parameter:CodeAnalysisRuleSet=MinimumRecommendedRules.ruleset (TaskId:15)
1>  Task Parameter:CodeAnalysisRuleSetDirectories=C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets (TaskId:15)
1>  Task Parameter:MSBuildProjectDirectory=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:15)
1>  Output Property: ResolvedCodeAnalysisRuleSet=C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset (TaskId:15)
1>Done executing task "ResolveCodeAnalysisRuleSet". (TaskId:15)
1>Done building target "ResolveCodeAnalysisRuleSet" in project "FailedToEmitModuleExample.csproj".: (TargetId:42)
1>Target "PreXsdCodeGen: (TargetId:43)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.ServiceModel.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreCompile" depends on it):
1>Set Property: XsdCodeGenPreCondition=False
1>Using "CallTarget" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "CallTarget" (TaskId:16)
1>  Task Parameter:Targets=CleanXsdCodeGen (TaskId:16)
1>Target "CleanXsdCodeGen: (TargetId:44)" in file "C:\windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.ServiceModel.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "PreXsdCodeGen" depends on it):
1>Using "Delete" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "Delete" (TaskId:17)
1>Done executing task "Delete". (TaskId:17)
1>Done building target "CleanXsdCodeGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:44)
1>Done executing task "CallTarget". (TaskId:16)
1>Done building target "PreXsdCodeGen" in project "FailedToEmitModuleExample.csproj".: (TargetId:43)
1>Target "XsdCodeGen" skipped, due to false condition; ( '$(XsdCodeGenPreCondition)' == 'True' ) was evaluated as ( 'False' == 'True' ).
1>Target "CoreCompile: (TargetId:45)" in file "C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\tools\Microsoft.CSharp.Core.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "Compile" depends on it):
1>Building target "CoreCompile" completely.
1>Output file "obj\Debug\FailedToEmitModuleExample.dll" does not exist.
1>Set Property: NoWarn=;1701;1702
1>Set Property: NoWarn=;1701;1702;2008
1>Using "Csc" task from assembly "C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools\Microsoft.Build.Tasks.CodeAnalysis.dll".
1>Task "Csc" (TaskId:18)
1>  Task Parameter:CodeAnalysisRuleSet=C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset (TaskId:18)
1>  Task Parameter:DebugType=full (TaskId:18)
1>  Task Parameter:DefineConstants=DEBUG;TRACE (TaskId:18)
1>  Task Parameter:DisabledWarnings=;1701;1702;2008 (TaskId:18)
1>  Task Parameter:EmitDebugInformation=True (TaskId:18)
1>  Task Parameter:ErrorEndLocation=True (TaskId:18)
1>  Task Parameter:ErrorReport=prompt (TaskId:18)
1>  Task Parameter:FileAlignment=512 (TaskId:18)
1>  Task Parameter:HighEntropyVA=True (TaskId:18)
1>  Task Parameter:NoConfig=True (TaskId:18)
1>  Task Parameter:NoStandardLib=True (TaskId:18)
1>  Task Parameter:Optimize=False (TaskId:18)
1>  Task Parameter:OutputAssembly=obj\Debug\FailedToEmitModuleExample.dll (TaskId:18)
1>  Task Parameter:Prefer32Bit=False (TaskId:18)
1>  Task Parameter:PreferredUILang=en-US (TaskId:18)
1>  Task Parameter:
1>      References=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0 (TaskId:18)
1>  Task Parameter:
1>      Sources=
1>          Tester.cs
1>          Properties\AssemblyInfo.cs
1>          C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs
1>          obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
1>          obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
1>          obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs (TaskId:18)
1>  Task Parameter:SubsystemVersion=6.00 (TaskId:18)
1>  Task Parameter:TargetType=Library (TaskId:18)
1>  Task Parameter:ToolExe=csc.exe (TaskId:18)
1>  Task Parameter:ToolPath=C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools (TaskId:18)
1>  Task Parameter:UseHostCompilerIfAvailable=True (TaskId:18)
1>  Task Parameter:UseSharedCompilation=False (TaskId:18)
1>  Task Parameter:Utf8Output=True (TaskId:18)
1>  Task Parameter:WarningLevel=4 (TaskId:18)
1>  C:\git\Misc\jaredpar\FailedToEmitModuleExample\packages\Microsoft.Net.Compilers.1.1.0-beta1-20150825-02\build\..\tools\csc.exe /noconfig /nowarn:1701,1702,2008 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll" /reference:"C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll" /debug+ /debug:full /filealign:512 /optimize- /out:obj\Debug\FailedToEmitModuleExample.dll /ruleset:"C:\Program Files\Microsoft Visual Studio 14.0\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset" /subsystemversion:6.00 /target:library /utf8output Tester.cs Properties\AssemblyInfo.cs "C:\Users\rgodfrey\AppData\Local\Temp\.NETFramework,Version=v4.5.AssemblyAttributes.cs" obj\Debug\\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs obj\Debug\\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs obj\Debug\\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs (TaskId:18)
1>  Microsoft (R) Visual C# Compiler version 1.1.0.50825 (TaskId:18)
1>  Copyright (C) Microsoft Corporation. All rights reserved. (TaskId:18)
1>   (TaskId:18)
1>CSC : error CS7038: Failed to emit module 'FailedToEmitModuleExample'.
1>C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\Tester.cs(7,38,7,49): warning CS0649: Field 'Tester._repository' is never assigned to, and will always have its default value null
1>Done executing task "Csc" -- FAILED. (TaskId:18)
1>Done building target "CoreCompile" in project "FailedToEmitModuleExample.csproj" -- FAILED.: (TargetId:45)
1>Target "_CheckForCompileOutputs: (TargetId:46)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "_CleanGetCurrentAndPriorFileWrites" depends on it):
1>Set Property: _DocumentationFileProduced=false
1>Set Property: _DebugSymbolsProduced=false
1>Done building target "_CheckForCompileOutputs" in project "FailedToEmitModuleExample.csproj".: (TargetId:46)
1>Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Off' == 'On' or (''!='' and 'Off' == 'Auto')).
1>Target "_CleanGetCurrentAndPriorFileWrites: (TargetId:47)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "_CleanRecordFileWrites" depends on it):
1>Using "ReadLinesFromFile" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "ReadLinesFromFile" (TaskId:19)
1>  Task Parameter:File=obj\Debug\FailedToEmitModuleExample.csproj.FileListAbsolute.txt (TaskId:19)
1>  Output Item(s): _CleanUnfilteredPriorFileWrites=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:19)
1>Done executing task "ReadLinesFromFile". (TaskId:19)
1>Using "ConvertToAbsolutePath" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "ConvertToAbsolutePath" (TaskId:20)
1>  Task Parameter:
1>      Paths=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0 (TaskId:20)
1>  Output Item(s): 
1>      _ResolveAssemblyReferenceResolvedFilesAbsolute=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  CopyLocal=true
1>                  FusionName=FailedToEmitModuleExample.Obfuscated, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
1>                  HintPath=..\Obfuscated\FailedToEmitModuleExample.Obfuscated.6.8.dll
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=FailedToEmitModuleExample.Obfuscated.6.8
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={HintPathFromItem}
1>                  Version=1.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\Microsoft.CSharp.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=Microsoft.CSharp
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom=C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Core.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  Implicit=true
1>                  OriginalItemSpec=System.Core
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.DataSetExtensions.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data.DataSetExtensions
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Data.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Data
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Net.Http.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Net.Http
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0
1>          C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Xml.Linq.dll
1>                  CopyLocal=false
1>                  FrameworkFile=true
1>                  FusionName=System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
1>                  ImageRuntime=v4.0.30319
1>                  OriginalItemSpec=System.Xml.Linq
1>                  Redist=Microsoft-Windows-CLRCoreComp.4.5
1>                  ReferenceSourceTarget=ResolveAssemblyReference
1>                  ResolvedFrom={TargetFrameworkDirectory}
1>                  Version=4.0.0.0 (TaskId:20)
1>Done executing task "ConvertToAbsolutePath". (TaskId:20)
1>Added Item(s): _CleanPriorFileWrites=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache
1>Using "FindUnderPath" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "FindUnderPath" (TaskId:21)
1>  Task Parameter:Path=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample (TaskId:21)
1>  Task Parameter:UpdateToAbsolutePaths=True (TaskId:21)
1>  Comparison path is "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample". (TaskId:21)
1>Done executing task "FindUnderPath". (TaskId:21)
1>Task "FindUnderPath" (TaskId:22)
1>  Task Parameter:Path=bin\Debug\ (TaskId:22)
1>  Task Parameter:Files=obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:22)
1>  Task Parameter:UpdateToAbsolutePaths=True (TaskId:22)
1>  Comparison path is "bin\Debug\". (TaskId:22)
1>Done executing task "FindUnderPath". (TaskId:22)
1>Task "FindUnderPath" (TaskId:23)
1>  Task Parameter:Path=obj\Debug\ (TaskId:23)
1>  Task Parameter:Files=obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:23)
1>  Task Parameter:UpdateToAbsolutePaths=True (TaskId:23)
1>  Comparison path is "obj\Debug\". (TaskId:23)
1>  Output Item(s): _CleanCurrentFileWritesInIntermediate=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:23)
1>Done executing task "FindUnderPath". (TaskId:23)
1>Added Item(s): _CleanCurrentFileWritesWithNoReferences=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache
1>Using "RemoveDuplicates" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "RemoveDuplicates" (TaskId:24)
1>  Task Parameter:Inputs=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:24)
1>  Output Item(s): _CleanCurrentFileWrites=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:24)
1>Done executing task "RemoveDuplicates". (TaskId:24)
1>Done building target "_CleanGetCurrentAndPriorFileWrites" in project "FailedToEmitModuleExample.csproj".: (TargetId:47)
1>Target "_CleanRecordFileWrites: (TargetId:48)" in file "C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets" from project "C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj" (target "CoreBuild" depends on it):
1>Task "RemoveDuplicates" (TaskId:25)
1>  Task Parameter:
1>      Inputs=
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache
1>          C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:25)
1>  Output Item(s): _CleanUniqueFileWrites=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:25)
1>Done executing task "RemoveDuplicates". (TaskId:25)
1>Task "MakeDir" (TaskId:26)
1>  Task Parameter:Directories=obj\Debug\ (TaskId:26)
1>Done executing task "MakeDir". (TaskId:26)
1>Using "WriteLinesToFile" task from assembly "Microsoft.Build.Tasks.Core, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
1>Task "WriteLinesToFile" (TaskId:27)
1>  Task Parameter:File=obj\Debug\FailedToEmitModuleExample.csproj.FileListAbsolute.txt (TaskId:27)
1>  Task Parameter:Lines=C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\obj\Debug\FailedToEmitModuleExample.csprojResolveAssemblyReference.cache (TaskId:27)
1>  Task Parameter:Overwrite=True (TaskId:27)
1>Done executing task "WriteLinesToFile". (TaskId:27)
1>Done building target "_CleanRecordFileWrites" in project "FailedToEmitModuleExample.csproj".: (TargetId:48)
1>
1>Project Performance Summary:
1>     2135 ms  C:\git\Misc\jaredpar\FailedToEmitModuleExample\FailedToEmitModuleExample\FailedToEmitModuleExample.csproj   1 calls
1>
1>Target Performance Summary:
1>        0 ms  BeforeCompile                              1 calls
1>        0 ms  ExpressionBuildExtension                   1 calls
1>        0 ms  BeforeResGen                               1 calls
1>        0 ms  _GenerateCompileInputs                     1 calls
1>        0 ms  ValidationExtension                        1 calls
1>        0 ms  _SetEmbeddedWin32ManifestProperties        1 calls
1>        0 ms  ResGen                                     1 calls
1>        0 ms  CleanXsdCodeGen                            1 calls
1>        0 ms  CreateCustomManifestResourceNames          1 calls
1>        0 ms  AfterResGen                                1 calls
1>        0 ms  SplitResourcesByCulture                    1 calls
1>        0 ms  ResolveProjectReferences                   1 calls
1>        0 ms  DesignTimeMarkupCompilation                1 calls
1>        0 ms  GetFrameworkPaths                          1 calls
1>        0 ms  AfterResolveReferences                     1 calls
1>        0 ms  PreXsdCodeGen                              1 calls
1>        0 ms  CoreResGen                                 1 calls
1>        0 ms  AfterMarkupCompilePass1                    1 calls
1>        0 ms  _CleanRecordFileWrites                     1 calls
1>        0 ms  GetReferenceAssemblyPaths                  1 calls
1>        0 ms  ResolveReferences                          1 calls
1>        0 ms  GenerateTargetFrameworkMonikerAttribute    1 calls
1>        0 ms  BuildOnlySettings                          1 calls
1>        0 ms  SetWin32ManifestProperties                 1 calls
1>        0 ms  BeforeResolveReferences                    1 calls
1>        0 ms  FileClassification                         1 calls
1>        0 ms  EnsureNuGetPackageBuildImports             1 calls
1>        0 ms  ImplicitlyExpandDesignTimeFacades          1 calls
1>        0 ms  PrepareResourceNames                       1 calls
1>        0 ms  ExpandSDKReferences                        1 calls
1>        0 ms  GenerateCompiledExpressionsTempFile        1 calls
1>        0 ms  GetInstalledSDKLocations                   1 calls
1>        0 ms  _CheckForCompileOutputs                    1 calls
1>        0 ms  BeforeBuild                                1 calls
1>        0 ms  DesignTimeXamlMarkupCompilation            1 calls
1>        0 ms  ResolveCodeAnalysisRuleSet                 1 calls
1>        0 ms  PrepareResources                           1 calls
1>        0 ms  PrepareForBuild                            1 calls
1>        0 ms  _SplitProjectReferencesByFileExistence     1 calls
1>        0 ms  _SetTargetFrameworkMonikerAttribute        1 calls
1>        0 ms  ResolveSDKReferences                       1 calls
1>       10 ms  AssignProjectConfiguration                 1 calls
1>       10 ms  _CleanGetCurrentAndPriorFileWrites         1 calls
1>       10 ms  _CheckForInvalidConfigurationAndPlatform   1 calls
1>       10 ms  AssignTargetPaths                          1 calls
1>       20 ms  ResolveAssemblyReferences                  1 calls
1>     2075 ms  CoreCompile                                1 calls
1>
1>Task Performance Summary:
1>        0 ms  Message                                    2 calls
1>        0 ms  CallTarget                                 1 calls
1>        0 ms  FindAppConfigFile                          1 calls
1>        0 ms  AssignCulture                              1 calls
1>        0 ms  ConvertToAbsolutePath                      1 calls
1>        0 ms  Delete                                     1 calls
1>        0 ms  ResolveCodeAnalysisRuleSet                 1 calls
1>        0 ms  GetReferenceAssemblyPaths                  1 calls
1>        0 ms  MakeDir                                    2 calls
1>        0 ms  ReadLinesFromFile                          1 calls
1>        0 ms  WriteLinesToFile                           1 calls
1>        0 ms  AssignTargetPath                           4 calls
1>        0 ms  GetFrameworkPath                           1 calls
1>        0 ms  RemoveDuplicates                           2 calls
1>       10 ms  AssignProjectConfiguration                 1 calls
1>       10 ms  FindUnderPath                              3 calls
1>       20 ms  ResolveAssemblyReference                   1 calls
1>     2075 ms  Csc                                        1 calls
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:02.13
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========

Sorry for being a pain! Any idea what I could be missing?

@jaredpar
Copy link
Member

@rhysgodfrey interesting. I'm looking into that.

@jaredpar
Copy link
Member

@rhysgodfrey I tracked down the disconnect. There was an error on my side that caused me to think I was using the latest NuGet package for the compiler, when in fact I was using the latest build on my machine.

The fix for this issue is not in the latest NuGet package:

The timing caused this fix to just miss the toolset snap. The good news is that it will definitely be in the next toolset which will be published in the very near future. Our goal cadence for toolsets is every three weeks. We've just gotten a bit behind this time due to other issues.

@rhysgodfrey
Copy link

@jaredpar cool, will keep an eye out for the next release.

Thanks for your help!

@josesimoes
Copy link

I'm seeing this CSC error CS7038 too.
I don't have any obfuscated assemblies and I've installed the Nuget package with the beta compiler. But still seeing that error.
What should I look for in the verbose build output to spot the root cause?

Thanks!

@jaredpar
Copy link
Member

jaredpar commented Oct 7, 2015

@josesimoes unfortunately there isn't really any verbose output that is going to help here. This error generally comes from an exception inside the compiler during the emit phase. The best way to get more detailed information is to attach a debugger and see where the exception is coming from.

Do you have a solution available that reproduces the problem that I could look at?

@josesimoes
Copy link

@jaredpar thank you for the prompt reply.
Unfortunately I don't... this project is code that is owned by a customer and I can't share it.
Can you guide me through the required steps to "attach a debugger" and get you the details you need?

@jaredpar
Copy link
Member

jaredpar commented Oct 7, 2015

@josesimoes assuming you're building from MSBuild. In that case

  1. Build once to ensure VBCSCompiler is started.
  2. Attach VS to VBCSCompiler. Set it to break on exceptions.
  3. Build again

There will probably be a few cancellation exception thrown and those can be ignored. What we're looking for is an exception that is thrown while Emit is further up on the stack. When that happens can you post the exception info + the stack trace.

Also feel free to email me with the information if you'd prefer to keep it off github. (jaredpar@microsoft.com).

@rhysgodfrey
Copy link

@jaredpar just tried this out with the VS2015 Update 1 CTP and everything is building happily. Thanks for your help!

@josesimoes
Copy link

@jaredpar to update you on this:

  • I wasn't successful on getting anything from attaching the debug to the VBCSCompiler
  • I did update the compiler Nuget package to 1.1.0-beta1-20150928-02
  • The project now builds correctly and runs as expected

Thanks for your help and sorry for taking so long to get back to this matter.

@Pilchie
Copy link
Member

Pilchie commented Oct 23, 2015

Tag @VSadov, since @jaredpar is out of the office for a bit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Compilers Bug Tenet-Compatibility Violation of forwards/backwards compatibility in a design-time piece.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

9 participants