VSCode
net462
Windows Powershell
Hi,
I am having some difficulties attempting to reference an included resource file.
Resources = [string[]]@('Rules.txt') # Resources to embed in the output executable
I can expand the compiled .exe file and I do see the contents of this file included in the .text file, so I know the file is being included.
However, I can’t seem to figure out how to reference the contents of that file from the powershell script.
Is there a special variable name I would reference the content of that file with?
$Resources[0]
Any help would be forever appreciated!