Silinda.B
❔ Need help with a MSB4025 error.
then i get this: (base) silindabaftijari@MacBook-Pro-tilhrende-Silinda Assingment 8 % dotnet help test TestCollatz.cs
Unrecognized command or argument 'TestCollatz.cs'
Description:
.NET CLI help utility
Usage:
dotnet help [<COMMAND_NAME>] [options]
Arguments:
<COMMAND_NAME> The SDK command to launch online help for.
Options:
-?, -h, --help Show command line help.
(base) silindabaftijari@MacBook-Pro-tilhrende-Silinda Assingment 8 %
60 replies
❔ Need help with a MSB4025 error.
(base) silindabaftijari@MacBook-Pro-tilhrende-Silinda Assingment 8 % dotnet --version
7.0.202
(base) silindabaftijari@MacBook-Pro-tilhrende-Silinda Assingment 8 % dotnet --list-sdks
6.0.301 [/usr/local/share/dotnet/sdk]
6.0.401 [/usr/local/share/dotnet/sdk]
6.0.405 [/usr/local/share/dotnet/sdk]
6.0.406 [/usr/local/share/dotnet/sdk]
7.0.202 [/usr/local/share/dotnet/sdk]
(base) silindabaftijari@MacBook-Pro-tilhrende-Silinda Assingment 8 %
60 replies
❔ Need help with a MSB4025 error.
long story short, this is a school assignment, we are already given the collatz.cs file and just need to create a testcollatz.cs. I then made one but as you can see i get that error. I have then tried to make a whole new file, with the same code ect. but again same error. I used .NET 6
60 replies
❔ Need help with a MSB4025 error.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Assignment 8</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.12.0" />
</ItemGroup>
</Project>
60 replies