pylorak / TinyWall

TinyWall is a free, non-intrusive, secure-by-default firewall for Windows.
GNU General Public License v3.0
294 stars 47 forks source link

Application refuses to build due to missing 'github_mark.png' in Icons.resx #34

Open TempAccountNull opened 6 months ago

TempAccountNull commented 6 months ago

This won't build since you never uploaded the github_mark.png in img folder. I checked all previous commits and it wasn't there.

So anyone attempting to build "TinyWall" from source, won't be able to unless they remove it.

Error:

1>TinyWall\SettingsForm.Designer.cs(448,77,448,88): error CS0117: 'Icons' does not contain a definition for 'github_mark'

Line: 448 in SettingsForm.Designer.cs this.btnGithub.Image = global::pylorak.TinyWall.Resources.Icons.github_mark;

To fix:

SettingsForm.Designer.cs comment this line out.

this.btnGithub.Image = global::pylorak.TinyWall.Resources.Icons.github_mark;

Icons.resx remove the following lines `

img\github-mark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a

`

You will now be able to build it.