Gandhi Gaming 1869
✅ Adding Dependencies for a Script
here's the .csproj file for the project:
`<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ps2IsoTools" Version="1.0.1" />
</ItemGroup>
</Project>
55 replies
✅ Adding Dependencies for a Script
Yeah, I'm just trying to run the example code they provided there. I'm not, at least yet, trying to at least write any significant code
Right now the code I'm trying to run is the following
and I'm getting the errors
/home/henry/ps2_editing/Program.cs(5,26): error CS0246: The type or namespace name 'UdfReader' could not be found (are you missing a using directive or an assembly reference?) [/home/henry/ps2_editing/ps2_editing.csproj]
/home/henry/ps2_editing/Program.cs(11,2): error CS0246: The type or namespace name 'FileIdentifier' could not be found (are you missing a using directive or an assembly reference?) [/home/henry/ps2_editing/ps2_editing.csproj]
55 replies