tintoy / corefx

This repo contains the .NET Core foundational libraries, called CoreFX. It includes classes for collections, file systems, console, XML, async and many others.
https://docs.microsoft.com/dotnet/
MIT License
1 stars 1 forks source link

System.Security.Cryptography.Xml phase 2 - get it to compile #1

Closed tintoy closed 7 years ago

tintoy commented 7 years ago

Implementation of phase 2 for dotnet/corefx#4278.

Being tracked here to avoid polluting the issue in the dotnet repository with comments about intermediate work.

tintoy commented 7 years ago

Ok, so I've got it down to a couple of remaining build errors:

1>------ Build started: Project: System.Security.Cryptography.Xml, Configuration: Debug Any CPU ------
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(63,58,63,62): error CS0103: The name 'CAPI' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(66,50,66,59): error CS0103: The name 'X509Utils' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(82,58,82,62): error CS0103: The name 'CAPI' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(130,32,130,41): error CS0103: The name 'X509Utils' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(152,13,152,19): error CS0246: The type or namespace name 'BigInt' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(152,28,152,34): error CS0246: The type or namespace name 'BigInt' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(338,61,338,65): error CS0103: The name 'CAPI' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(369,45,369,60): error CS1061: 'X509Certificate2' does not contain a definition for 'GetAnyPublicKey' and no extension method 'GetAnyPublicKey' accepting a first argument of type 'X509Certificate2' could be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(544,40,544,55): error CS1061: 'X509Certificate2' does not contain a definition for 'GetAnyPublicKey' and no extension method 'GetAnyPublicKey' accepting a first argument of type 'X509Certificate2' could be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(820,24,820,35): error CS0246: The type or namespace name 'RegistryKey' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(820,52,820,60): error CS0103: The name 'Registry' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(826,70,826,87): error CS0103: The name 'RegistryValueKind' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(296,24,296,35): error CS0246: The type or namespace name 'RegistryKey' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(296,53,296,61): error CS0103: The name 'Registry' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(303,29,303,46): error CS0246: The type or namespace name 'RegistryValueKind' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(304,46,304,63): error CS0103: The name 'RegistryValueKind' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(304,86,304,103): error CS0103: The name 'RegistryValueKind' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(755,13,755,28): error CS0246: The type or namespace name 'StorePermission' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(755,38,755,53): error CS0246: The type or namespace name 'StorePermission' could not be found (are you missing a using directive or an assembly reference?)
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(755,54,755,74): error CS0103: The name 'StorePermissionFlags' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(793,46,793,55): error CS0103: The name 'X509Utils' does not exist in the current context
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(34,56,34,92): error CA5350: TripleDESKeyWrapEncrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(37,37,37,77): error CA5350: TripleDESKeyWrapEncrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(47,37,47,92): error CA5350: TripleDESKeyWrapEncrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(24,45,24,76): error CA5350: Do not use insecure cryptographic algorithm SHA1.
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(58,56,58,92): error CA5350: TripleDESKeyWrapDecrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(61,37,61,92): error CA5350: TripleDESKeyWrapDecrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(70,37,70,77): error CA5350: TripleDESKeyWrapDecrypt uses a weak cryptographic algorithm TripleDES
1>D:\Development\github\tintoy\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(76,45,76,76): error CA5350: Do not use insecure cryptographic algorithm SHA1.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Will push the initial changes for discussion shortly.

tintoy commented 7 years ago

Initial changes pushed as 85e9ac1. Most remaining issues appear to relate to CAPI / Registry.

tintoy commented 7 years ago

Remaining fixes / hacks pushed as bf1cc25. Stripped out CAPI / Registry. So it builds now, but still need to populate ResX file from System.Security.Text.

tintoy commented 7 years ago

Populated ResX with messages from System.Security.txt in b27a769.

Quick-and-dirty Python script to convert text-format messages into ResX data elements:

messages = []

with open('System.Security.txt') as strings_file:
    line = None
    while line != '':
        line = strings_file.readline()
        if line.startswith(';'):
            continue

        trimmed = line.rstrip()
        if trimmed == '':
            continue

        messages.append(trimmed)

template = """<data name="{}">
    <value>{}</value>
</data>"""
for message in messages:
    message_components = message.split(sep='=', maxsplit=1)
    if len(message_components) != 2:
        print(message)

        continue

    print(template.format(
        message_components[0], # Name
        message_components[1]  # Value
    ))
tintoy commented 7 years ago

@anthonylangsworth - do you have time to do a quick review?

anthonylangsworth commented 7 years ago

I downloaded and compiled the source.

I cannot compile in Visual Studio. I get the following errors:

Could not locate compile assets for any of the frameworks .NetCoreApp,Version=v1.1
Could not locate compile assets for any of the frameworks .NetStandard,Version=v1.7

When I compile using dotnet build, I get the following errors:

Project src (.NETStandard,Version=v1.7) will be compiled because expected outputs are missing
Compiling src for .NETStandard,Version=v1.7
C:\Program Files\dotnet\dotnet.exe compile-csc @c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\obj\Debug\netstandard1.7\dotnet-compile.rsp returned Exit Code 1
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs(41,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs(63,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(85,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CanonicalXmlNodeList.cs(93,49): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(129,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(141,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(157,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(166,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(186,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(45,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(60,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs(56,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs(67,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs(76,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(90,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs(57,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(109,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(119,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs(43,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs(151,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs(42,59): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs(103,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs(26,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(34,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs(50,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(53,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(96,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs(46,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs(79,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(67,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs(84,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(39,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(35,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(42,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(193,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(210,55): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(232,46): error CS0103: The name 'SR' does not exist in the current context
Compilation failed.
    0 Warning(s)
    178 Error(s)
Time elapsed 00:00:00.8460907
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(95,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(81,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(256,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(272,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs(38,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs(64,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(348,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(353,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs(107,49): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(63,69): error CS0103: The name 'Interop' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(82,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(107,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(113,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(103,100): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(192,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(201,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(147,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(158,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(166,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(238,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(270,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(276,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(176,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(193,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(473,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs(190,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(212,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(223,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(232,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(297,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(309,65): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(494,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(59,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(83,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(293,64): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(300,64): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(317,64): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(323,64): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(334,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(534,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(575,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs(88,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(272,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(285,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(355,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(611,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(93,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(375,27): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(381,52): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(405,27): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(411,52): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs(113,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(349,76): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(364,68): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(436,55): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(144,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(160,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SymmetricKeyWrap.cs(192,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(457,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(458,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(307,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(344,108): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(361,112): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(394,66): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(432,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(441,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(388,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(405,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(412,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(415,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(91,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(488,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(61,49): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(103,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(538,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(430,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(439,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(441,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(465,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(562,67): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(577,31): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(482,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(101,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(117,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(133,62): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(136,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(157,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(95,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(122,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(612,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(189,73): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(194,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(651,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(145,49): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(679,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(196,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(205,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(702,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(603,33): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(727,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs(71,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\X509IssuerSerial.cs(23,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\X509IssuerSerial.cs(25,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs(83,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(750,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(751,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(777,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(802,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(835,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(96,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(106,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(876,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(890,48): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(895,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs(134,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(920,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(931,48): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(936,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(203,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(268,45): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(873,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(835,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(957,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(969,55): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(974,55): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(979,58): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(984,57): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(989,51): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(1002,59): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(1018,38): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(879,46): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(1047,53): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(424,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(443,54): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1044,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1053,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1082,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1084,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1086,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1088,50): error CS0103: The name 'SR' does not exist in the current context
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(1132,46): error CS0103: The name 'SR' does not exist in the current context
Project src (.NETFramework,Version=v4.6.2) will be compiled because expected outputs are missing
Compiling src for .NETFramework,Version=v4.6.2
C:\Program Files\dotnet\dotnet.exe compile-csc @c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\obj\Debug\net462\dotnet-compile.rsp returned Exit Code 1
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\error CS1509: The referenced file 'C:\Users\Anthony\.nuget\packages\Microsoft.TargetingPack.NETFramework.v4.6.2\1.0.1\lib\net462\System.EnterpriseServices.Wrapper.dll' is not an assembly
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\error CS0009: Metadata file 'C:\Users\Anthony\.nuget\packages\Microsoft.TargetingPack.NETFramework.v4.6.2\1.0.1\lib\net462\System.EnterpriseServices.Thunk.dll' could not be opened -- PE image doesn't contain managed metadata.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NWithCommentsTransform.cs(17,53): warning CS0436: The type 'XmlDsigC14NTransform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs' conflicts with the imported type 'XmlDsigC14NTransform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs(11,41): warning CS0436: The type 'EncryptedType' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs' conflicts with the imported type 'EncryptedType' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoNode.cs(16,32): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigC14NTransform.cs(17,41): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigEnvelopedSignatureTransform.cs(17,55): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs(46,18): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs(52,18): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(11,40): warning CS0436: The type 'EncryptedType' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs' conflicts with the imported type 'EncryptedType' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(45,16): warning CS0436: The type 'ReferenceList' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs' conflicts with the imported type 'ReferenceList' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(55,34): warning CS0436: The type 'DataReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataReference.cs' conflicts with the imported type 'DataReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(60,34): warning CS0436: The type 'KeyReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyReference.cs' conflicts with the imported type 'KeyReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs(79,16): warning CS0436: The type 'EncryptedReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs' conflicts with the imported type 'EncryptedReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs(85,16): warning CS0436: The type 'EncryptedReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs' conflicts with the imported type 'EncryptedReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs(15,17): warning CS0436: The type 'ReferenceList' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs' conflicts with the imported type 'ReferenceList' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\ReferenceList.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs(35,17): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs(36,17): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(37,16): warning CS0436: The type 'CipherReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs' conflicts with the imported type 'CipherReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(40,25): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(24,27): warning CS0436: The type 'CipherReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs' conflicts with the imported type 'CipherReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs(56,16): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs(14,17): warning CS0436: The type 'CipherReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs' conflicts with the imported type 'CipherReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoRetrievalMethod.cs(15,43): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(45,16): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(60,34): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(15,17): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs(26,50): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\RSAKeyValue.cs(15,32): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(71,16): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(82,24): warning CS0436: The type 'EncryptionMethod' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs' conflicts with the imported type 'EncryptionMethod' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(92,24): warning CS0436: The type 'EncryptionPropertyCollection' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs' conflicts with the imported type 'EncryptionPropertyCollection' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(102,33): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(107,24): warning CS0436: The type 'CipherData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs' conflicts with the imported type 'CipherData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs(11,24): warning CS0436: The type 'EncryptionMethod' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs' conflicts with the imported type 'EncryptionMethod' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs(11,59): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(17,17): warning CS0436: The type 'EncryptionMethod' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs' conflicts with the imported type 'EncryptionMethod' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionMethod.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(18,17): warning CS0436: The type 'CipherData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs' conflicts with the imported type 'CipherData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(19,17): warning CS0436: The type 'EncryptionPropertyCollection' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs' conflicts with the imported type 'EncryptionPropertyCollection' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedType.cs(20,17): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(22,18): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(48,16): warning CS0436: The type 'SignedInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs' conflicts with the imported type 'SignedInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(65,16): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs(120,31): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(209,31): warning CS0436: The type 'DataObject' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataObject.cs' conflicts with the imported type 'DataObject' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataObject.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(14,17): warning CS0436: The type 'SignedInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs' conflicts with the imported type 'SignedInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(17,17): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(15,40): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs(20,17): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(26,16): warning CS0436: The type 'EncryptedKey' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs' conflicts with the imported type 'EncryptedKey' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(17,17): warning CS0436: The type 'EncryptedKey' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs' conflicts with the imported type 'EncryptedKey' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoEncryptedKey.cs(21,36): warning CS0436: The type 'EncryptedKey' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs' conflicts with the imported type 'EncryptedKey' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(174,39): warning CS0436: The type 'CipherData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs' conflicts with the imported type 'CipherData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs(17,44): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs(11,43): warning CS0436: The type 'EncryptedReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs' conflicts with the imported type 'EncryptedReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(246,47): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(282,60): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(363,51): warning CS0436: The type 'EncryptedKey' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs' conflicts with the imported type 'EncryptedKey' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedKey.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(484,16): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\CipherReference.cs(25,44): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(522,16): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(674,35): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs(791,68): warning CS0436: The type 'EncryptedData' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs' conflicts with the imported type 'EncryptedData' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedData.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Utils.cs(703,68): warning CS0436: The type 'KeyInfoX509Data' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs' conflicts with the imported type 'KeyInfoX509Data' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoX509Data.cs(15,36): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NWithCommentsTransform.cs(21,56): warning CS0436: The type 'XmlDsigExcC14NTransform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs' conflicts with the imported type 'XmlDsigExcC14NTransform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoName.cs(15,32): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs(19,42): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyReference.cs(11,40): warning CS0436: The type 'EncryptedReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs' conflicts with the imported type 'EncryptedReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(24,18): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyReference.cs(23,41): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(95,16): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(259,34): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigXsltTransform.cs(17,41): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DSAKeyValue.cs(15,32): warning CS0436: The type 'KeyInfoClause' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs' conflicts with the imported type 'KeyInfoClause' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfoClause.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(21,17): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs(22,17): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(39,24): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(58,30): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(17,40): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(72,28): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(122,16): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(86,39): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(100,28): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(145,18): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(120,16): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(126,16): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(42,16): warning CS0436: The type 'IRelDecryptor' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs' conflicts with the imported type 'IRelDecryptor' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(283,34): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionPropertyCollection.cs(157,28): warning CS0436: The type 'EncryptionProperty' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs' conflicts with the imported type 'EncryptionProperty' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptionProperty.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(48,77): warning CS0436: The type 'IRelDecryptor' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs' conflicts with the imported type 'IRelDecryptor' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(21,17): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlLicenseTransform.cs(23,17): warning CS0436: The type 'IRelDecryptor' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs' conflicts with the imported type 'IRelDecryptor' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\IRelDecryptor.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs(28,17): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataReference.cs(11,41): warning CS0436: The type 'EncryptedReference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs' conflicts with the imported type 'EncryptedReference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedReference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataReference.cs(23,42): warning CS0436: The type 'TransformChain' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs' conflicts with the imported type 'TransformChain' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\TransformChain.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(154,21): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(171,16): warning CS0436: The type 'EncryptedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs' conflicts with the imported type 'EncryptedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(182,16): warning CS0436: The type 'Signature' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs' conflicts with the imported type 'Signature' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(187,16): warning CS0436: The type 'SignedInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs' conflicts with the imported type 'SignedInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(207,16): warning CS0436: The type 'KeyInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs' conflicts with the imported type 'KeyInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\KeyInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(241,34): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(246,31): warning CS0436: The type 'DataObject' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataObject.cs' conflicts with the imported type 'DataObject' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\DataObject.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(629,61): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(696,56): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(20,43): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(57,16): warning CS0436: The type 'EncryptedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs' conflicts with the imported type 'EncryptedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDecryptionTransform.cs(26,17): warning CS0436: The type 'EncryptedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs' conflicts with the imported type 'EncryptedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\XmlDsigBase64Transform.cs(18,43): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(23,19): warning CS0436: The type 'Signature' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs' conflicts with the imported type 'Signature' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Signature.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(39,22): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs(55,17): warning CS0436: The type 'EncryptedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs' conflicts with the imported type 'EncryptedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\EncryptedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(289,55): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(289,76): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(324,59): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(324,85): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(347,54): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(347,75): warning CS0436: The type 'SignedInfo' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs' conflicts with the imported type 'SignedInfo' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedInfo.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(366,59): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(396,60): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(426,53): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(426,74): warning CS0436: The type 'Transform' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs' conflicts with the imported type 'Transform' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Transform.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(451,56): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(469,62): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(505,13): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(551,54): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(588,49): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(637,41): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(671,41): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(694,50): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(694,71): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
Compilation failed.
    141 Warning(s)
    2 Error(s)
Time elapsed 00:00:00.8396905
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(722,53): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(743,52): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(769,48): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(794,49): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(794,70): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(822,53): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(823,53): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(860,50): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(909,50): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(948,49): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(1038,57): warning CS0436: The type 'SignedXml' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs' conflicts with the imported type 'SignedXml' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXml.cs'.
c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\SignedXmlDebugLog.cs(1039,57): warning CS0436: The type 'Reference' in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs' conflicts with the imported type 'Reference' in 'System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. Using the type defined in 'c:\Users\Anthony\Source\Repos\corefx\src\System.Security.Cryptography.Xml\src\System\Security\Cryptography\Xml\Reference.cs'.

Clearly, I am missing something. Please help me out.

tintoy commented 7 years ago

Clearly, I am missing something. Please help me out.

It's not just you :)

I had issues with dotnet build, too. I think these projects only build using MSBuild (as used by build.sh / build.cmd).

As for why the test project won't build, I'm not sure yet - haven't had a chance to look into it but I did try adding a <Compile/> item to the project file and it didn't make any difference.

I'll have another look this morning at the corefx docs for building, and see what I can see...

tintoy commented 7 years ago

Yeah, has to be built via MSBuild, not dotnet build:

~/development/github/tintoy/corefx/Tools/msbuild.sh ~/development/github/tintoy/corefx/src/System.Security.Cryptography.Xml/src/System.Security.Cryptography.Xml.csproj /v:m

Produces:

Microsoft (R) Build Engine version 14.1.0.0
Copyright (C) Microsoft Corporation. All rights reserved.

  System.Security.Cryptography.Xml -> /Users/tintoy/development/github/tintoy/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/System.Security.Cryptography.Xml.dll
  System.Security.Cryptography.Xml -> /Users/tintoy/development/github/tintoy/corefx/bin/AnyOS.AnyCPU.Debug/System.Security.Cryptography.Xml/System.Security.Cryptography.Xml.dll
tintoy commented 7 years ago

(I assume the same goes for Windows)

tintoy commented 7 years ago

Ok - have worked out the errors building the test project. It's because of steps they've taken to prevent it from being included in the rest of the build.

Jaedson33 commented 7 years ago

So... does it compile?

tintoy commented 7 years ago

Yep :)

I think most people are on vacation now, but when they get back it'll probably get merged pretty quickly. Then we can look at planning and writing tests for it (which is where most of the work is). At that point we'll have enough work for multiple people to work on.

Jaedson33 commented 7 years ago

So when do you think I can just update the nuget package in my UWP project and use the SignedXml without any problem?

tintoy commented 7 years ago

Sorry but I suspect it will be a while still, this is only the first step. Once we have it building there will be a lot of tests to write :-)

I'm guessing we'll know more once the scope of testing has been decided by the project maintainers.

anthonylangsworth commented 7 years ago

Using the feature/crypto-xml-inbuild branch with msbuild /p:Configuration=Debug "/p:Platform=Any CPU" tests\System.Security.Cryptography.Xml.Tests.csproj, I get the following error:

  "c:\Users\Anthony\Source\corefx\Tools/dotnetcli/dotnet" "c:\Users\Anthony\Source\corefx\Tools/ApiCompat.exe" @"c:\Users\Anthony\Source\corefx\bin/obj/AnyOS.Any CPU.Debug/System.Security.Cryptography.Xml/apicompat.rsp" 

  Unhandled Exception: Microsoft.Fx.CommandLine.CommandLineParserException: Response file 'c:\Users\Anthony\Source\corefx\bin/obj/AnyOS.Any' does not exist!
     at Microsoft.Fx.CommandLine.CommandLineParser.AddWord(String& commandLine, Int32 wordStartIndex, Int32 wordEndIndex, Int32 numQuotes, Boolean hasExcapedQuotes, Boolean isResponseFile)
     at Microsoft.Fx.CommandLine.CommandLineParser.ParseWords(String commandLine)
     at Microsoft.Fx.CommandLine.CommandLineParser..ctor(String[] args)
     at ApiCompat.Program.ParseCommandLine(String[] args)
     at ApiCompat.Program.Main(String[] args)

This is invoked from tools\ApiCompat.targets but that file appears to be OK. ApiCompat is having issues parsing the command line. Are you seeing the same issue? Should I investigate the code for that tool or am I going down the wrong path?

tintoy commented 7 years ago

Just building the sln file worked for me...

On 24 Dec 2016 11:21 AM, "Anthony Langsworth" notifications@github.com wrote:

Using the feature//crypto-xml-inbuild branch with msbuild /p:Configuration=Debug "/p:Platform=Any CPU" tests\System.Security. Cryptography.Xml.Tests.csproj, I get the following error:

"c:\Users\Anthony\Source\corefx\Tools/dotnetcli/dotnet" "c:\Users\Anthony\Source\corefx\Tools/ApiCompat.exe" @"c:\Users\Anthony\Source\corefx\bin/obj/AnyOS.Any CPU.Debug/System.Security.Cryptography.Xml/apicompat.rsp"

Unhandled Exception: Microsoft.Fx.CommandLine.CommandLineParserException: Response file 'c:\Users\Anthony\Source\corefx\bin/obj/AnyOS.Any' does not exist! at Microsoft.Fx.CommandLine.CommandLineParser.AddWord(String& commandLine, Int32 wordStartIndex, Int32 wordEndIndex, Int32 numQuotes, Boolean hasExcapedQuotes, Boolean isResponseFile) at Microsoft.Fx.CommandLine.CommandLineParser.ParseWords(String commandLine) at Microsoft.Fx.CommandLine.CommandLineParser..ctor(String[] args) at ApiCompat.Program.ParseCommandLine(String[] args) at ApiCompat.Program.Main(String[] args)

This is invoked from tools\ApiCompat.targets but that file appears to be OK. ApiCompat is having issues parsing the command line. Are you seeing the same issue? Should I investigate the code for that tool or am I going down the wrong path?

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/tintoy/corefx/issues/1#issuecomment-269059612, or mute the thread https://github.com/notifications/unsubscribe-auth/ABkezIGwNh5uAfCvD0IuiW45WsTDBLU3ks5rLGVtgaJpZM4LSZKb .

anthonylangsworth commented 7 years ago

When I run msbuild without any arguments or supplying the solution file, I get a different error:

C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml\System.Security.Cryptography.Xml.sln.metaproj : error MSB4126: The specified solution configuration "Debug|X64" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") or leave those properties blank to use the default solution configuration. [C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml\System.Security.Cryptography.Xml.sln]
tintoy commented 7 years ago

Interesting - it worked for me on MacOS; what if you use the msbuild in /Tools?

On 24 Dec 2016 11:32 AM, "Anthony Langsworth" notifications@github.com wrote:

When I run msbuild without any arguments or supplying the solution file, I get a different error:

C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml\System.Security.Cryptography.Xml.sln.metaproj : error MSB4126: The specified solution configuration "Debug|X64" is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform="Any CPU") or leave those properties blank to use the default solution configuration. [C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml\System.Security.Cryptography.Xml.sln]

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/tintoy/corefx/issues/1#issuecomment-269060122, or mute the thread https://github.com/notifications/unsubscribe-auth/ABkezMs5_ZslvqV672FYv41BGVXWph3eks5rLGgGgaJpZM4LSZKb .

Jaedson33 commented 7 years ago

You should edit the .sln file.

anthonylangsworth commented 7 years ago

I am having issues with that, too.

C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml>..\..\tools\msbuild.exe

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'MSBuild, Version=14.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A) ---> System.Security.SecurityException: Strong name validation failed. (Exception from HRESULT: 0x8013141A)
   --- End of inner exception stack trace ---

Probably more PEBCAK.

tintoy commented 7 years ago

Try running "build-managed.cmd -SkipTests" first.

On 24 Dec 2016 12:42 PM, "Anthony Langsworth" notifications@github.com wrote:

I am having issues with that, too.

C:\Users\Anthony\Source\corefx\src\System.Security.Cryptography.Xml>....\tools\msbuild.exe

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'MSBuild, Version=14.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A) ---> System.Security.SecurityException: Strong name validation failed. (Exception from HRESULT: 0x8013141A) --- End of inner exception stack trace ---

Probably more PEBCAK.

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/tintoy/corefx/issues/1#issuecomment-269063192, or mute the thread https://github.com/notifications/unsubscribe-auth/ABkezP3WQofz00gyM3ai-_lmyGPKWX5Hks5rLHiFgaJpZM4LSZKb .

tintoy commented 7 years ago

(there's a lot of auto-generated project magic)

anthonylangsworth commented 7 years ago

I gave up trying to get it working on Windows 10. Compiling fine under a Ubuntu 16.04 VM.

Not that I'll be committing today but where should I start committing tests? This branch or another?

tintoy commented 7 years ago

Feature branch I reckon - we can consider it a standalone workspace, and we can cherry-pick commits to our master once we're at the stage that XmlCrypto is part of the standard build.

Sound OK to you?

anthonylangsworth commented 7 years ago

Sounds good to me. Merry Christmas, too!

tintoy commented 7 years ago

And to you, good sir :)

Jaedson33 commented 7 years ago

Merry Christmas =D

anthonylangsworth commented 7 years ago

Trying to get the tests working in branch feature/tests. There is certainly some msbuild magic here but it now just needs references to Xunit and I think (hope) it should build. It may need to be cleaned up/standardized later.

If it helps, I am using the following tasks.json for VS Code:


{
    "version": "0.1.0",
    "command": "../../Tools/msbuild.sh",
    "args": [
        "/property:GenerateFullPaths=true",
        "tests/System.Security.Cryptography.Xml.Tests.csproj"
    ],
    "taskSelector": "/t:",
    "showOutput": "always",
    "tasks": [
        {
            "taskName": "BuildAndTest",
            "problemMatcher": "$msCompile",
            "isBuildCommand": true
        }
    ]
}
anthonylangsworth commented 7 years ago

Turning out to be harder than expected. When I reference Xunit, I get an error saying there are multiple declarations of System classes. The version of Xunit included does not appear to be compiled against .Net Standard 2. Looks like I need to move these back to an earlier version of .Net standard but copying csproj files from similar projects is giving other errors. sigh

Jaedson33 commented 7 years ago

I will do a fork and see what errors are you giving.

tintoy commented 7 years ago

Yeah - other projects were added before netstandard 2 :-/

tintoy commented 7 years ago

@anthonylangsworth try targeting netstandard1.7 or net462. That should work.

tintoy commented 7 years ago

BTW you don't reference XUnit directly; the generated-project-magic stuff does it for you.

Have you seen this, this, and this?

anthonylangsworth commented 7 years ago

I am always happy to admit I was wrong but the issue here is not what command line to run. The issue is what changes need to be made to csproj files to make this work. For example, the project GUID used to reference the System.Security.Cryptography.Xml project from the System.Security.Cryptography.Xml.Test project was incorrect.

I have tried looking at other test projects. For example, System.Collections.Immutable, as suggested in the developer guide, references .Net Standand v1.3. I tried copying over the appropriate changes and project.json file, adding in references to System.Xml then running a nuget restore to find pages full of errors it still cannot not resolve. Other test projects all reference different versions of .Net standard or do things in slightly different ways.

Perhaps this needs fresh eyes. Can you @tintoy have a look at this, please?

tintoy commented 7 years ago

Hey mate.

Sorry have been oiling our deck today so haven't had time to look over this yet but I will in the next day or 2. My instincts tell me we may have to wait for the MS people to come back online to find out how references are meant to work in corefx (since that seems to be one of the "magic" areas), but I'll have a proper attempt at getting it to work and let you know what I find. Suspect we're a bit bleeding-edge at the moment in terms of netstandard vs actual references. Haven't made a systematic study of the build system yet but maybe it's time to bite the bullet.

On 27 Dec 2016 12:06 PM, "Anthony Langsworth" notifications@github.com wrote:

I am always happy to admit I was wrong but the issue here is not what command line to run. The issue is what changes need to be made to csproj files to make this work. For example, the project GUID used to reference the System.Security.Cryptography.Xml project from the System.Security.Cryptography.Xml.Test project was incorrect.

I have tried looking at other test projects. For example, System.Collections.Immutable, as suggested in the developer guide https://github.com/tintoy/corefx/blob/master/Documentation/project-docs/developer-guide.md#running-tests-on-the-command-line, references .Net Standand v1.3. I tried copying over the appropriate changes and project.json file, adding in references to System.Xml then running a nuget restore to find pages full of errors it still cannot not resolve. Other test projects all reference different versions of .Net standard or do things in slightly different ways.

Perhaps this needs fresh eyes. Can you @tintoy https://github.com/tintoy have a look at this, please?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/tintoy/corefx/issues/1#issuecomment-269253614, or mute the thread https://github.com/notifications/unsubscribe-auth/ABkezIXrURyAG3QM2JgfS9VEzpTD1irBks5rMGSOgaJpZM4LSZKb .

anthonylangsworth commented 7 years ago

Absolutely no rush. Get the deck done.

I reached the point where I question my assumptions ("This is easy to get working") and realized things are not as ready as they seem, possibly even "bleeding edge" as you say. I'm taking a break from trying to get it to work for a few days. Anything you can do would be helpful but, if you can't, let's ask the MS guys.

If I have the inclination, I'll start writing tests on the existing version of System.Security.Cryptography.Xml in the meantime.

tintoy commented 7 years ago

@anthonylangsworth chortle, I figured it out.

Open the solution in Visual Studio, set test project as startup, then hit run :)

No integration with test explorer (a known issue, according to the docs).

tintoy commented 7 years ago

Or from the command-line:

msbuild /t:Test .\tests\System.Security.Cryptography.Xml.Tests.csproj
tintoy commented 7 years ago

Oh, and on OSX / Linux you can save yourself some typing by running:

alias msbuild=$PWD/Tools/msbuild.sh
tintoy commented 7 years ago

Ugh, ok, tests don't run from OSX currently, but they do run on Windows.

tintoy commented 7 years ago

Oh, and to run tests in a specific test class:

msbuild .\tests\System.Security.Cryptography.Xml.Tests.csproj /t:Test "/p:XunitOptions=-class MyNamespave.MyTestClass"
tintoy commented 7 years ago

@bartonjs, does this look correct to you?

anthonylangsworth commented 7 years ago

@tintoy No luck, I'm afraid.

I did the following:

  1. git checkout feature/crypto-xml-inbuild
  2. start src\System.Security.Cryptography.Xml\System.Security.Cryptography.Xml.sln
  3. Wait for Visual Studio to load.
  4. Set the test project as the start up project.
  5. Hit F5 to run.

Everything worked as expected. I then added the following test to System.Security.Cryptography.Xml.Tests:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;

namespace System.Security.Cryptography.Xml.Tests
{
    public class SignedXmlTests
    {
        [Fact]
        public void Ctor_Null()
        {
            Assert.Throws<ArgumentNullException>(() => new SignedXml(null));
        }
    }
}

If I hit F5 again, I get the error The type or namespace name 'SignedXml' could not be found (are you missing a using directive or an assembly reference?) on line 15 in the file above. Adding a project reference to System.Security.Cryptography.Xml does not fix the issue.

I saw your ExampleTests.cs file but that did not reference any classes from System.Security.Cryptography.Xml. Am I missing something here?

tintoy commented 7 years ago

Ah, didn't try that :blush:

I suspect it's because the XmlCrypto package is not part of the standard library yet; let me dig out the windows laptop and have a go.

tintoy commented 7 years ago

Ok, I think I've found the cause of the problem (missing from here); let me just run a build and I'll let you know shortly.

tintoy commented 7 years ago

Ok - different problem now, but I think I see a way through. Give me 15-20 mins.

tintoy commented 7 years ago

Sorry to have wasted your evening, but I think it's time to give up for now :)

I've spent a couple of hours on this and, while I've gotten much further than you did, there's still no end in sight. I'm still trying to work out how System.Security.Cryptography.Xml.Tests is meant to reference System.Security.Cryptography.Xml. I'll ping you if I find anything useful.

tintoy commented 7 years ago

The reference is connected now that I found that incorrect project GUID you mentioned, but it seems there's a platform mismatch or something else along those lines that's causing problems.

anthonylangsworth commented 7 years ago

Thanks I spent some time mucking around in the feature/tests branch with different things but had similarly poor luck. Let's leave this until after the break when the MS guys are back in action.

Thanks for all your hard work, too, @tintoy .

tintoy commented 7 years ago

No worries - I'm sure it'll turn out to be something simple; that build process is somewhat byzantine but I have at least a basic understanding now of how it hangs together.