0

I've tried building my project but its having none of it, no errors displayed in the error window and I've already tried everything that the other questions have suggested.

What have I tried?

  • Rebuilding Solution
  • Restarting Visual Studio
  • Restarting Computer
  • Deleting bin folder

Any output? Yes, but unfortinatly its too long to send here.
https://pastebin.com/raw/53f47F0C

pozexexe
  • 17
  • 1
  • 2
  • Did you try clean your solution? – Akbar Badhusha Feb 18 '18 at 17:01
  • 1
    Hi I can see the following error in your output: "C:\Users\admin\Desktop\workspace\projects\Seegal\Seegal Client\Seegal Client\Properties\AssemblyInfo.cs(14,12,14,29): error CS0579: Duplicate 'AssemblyTrademark' attribute" So maybe have a look here: [Duplicate AssemblyVersion Attribute](https://stackoverflow.com/questions/10311347/duplicate-assemblyversion-attribute) – huserben Feb 18 '18 at 17:02
  • There are no duplicated attributes in my AssemblyInfo. – pozexexe Feb 18 '18 at 17:18
  • 1
    There clearly is a duplicate. The compiler does not lie to you. – Ken White Feb 18 '18 at 18:33
  • Attributes don't necessarily need to be in the `AssemblyInfo.cs` file, they could be anywhere in the project. Also, Visual Studio 2017 (with the new `.csproj` format) automatically generates attributes if you don't explicitly tell it not to, so if you have them in `AssemblyInfo.cs` they are duplicates. – NightOwl888 Feb 18 '18 at 18:41

1 Answers1

1

On your pastebin link appears two errors:

1> C:\Users\admin\Desktop\workspace\projects\Seegal\Seegal Client\Seegal Client\Properties\AssemblyInfo.cs(14,12,14,29): error CS0579: Duplicate 'AssemblyTrademark' attribute 1> C:\Users\admin\Desktop\workspace\projects\Seegal\Seegal Client\Seegal Client\Properties\AssemblyInfo.cs(15,12,15,27): error CS0579: Duplicate 'AssemblyCulture' attribute

Watch carefully AssemblyInfo.cs file, there must be two duplicated attributes.

Marc
  • 1,359
  • 1
  • 15
  • 39