slicybtw
slicybtw
Explore posts from servers
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok, thanks
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
i want to test it on windows
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
how can i turn the Program.cs file to .exe
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
i have a question
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
its fixed
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
thanks
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
should i remove
</ItemGroup>
</ItemGroup>
?
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
like this ?
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PackageReference Include="NuGet" Version="0.0.1" />
<PackageReference Include="RestSharp" Version="0.0.2" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PackageReference Include="NuGet" Version="0.0.1" />
<PackageReference Include="RestSharp" Version="0.0.2" />
</ItemGroup>

</Project>
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
/snap/dotnet-sdk/233/sdk/8.0.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.Shared.targets(190,5): error NETSDK1022: Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'Program.cs' [/home/slicybtw/Desktop/RightLy/RightLy.csproj]
/snap/dotnet-sdk/233/sdk/8.0.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.Shared.targets(190,5): error NETSDK1022: Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'Program.cs' [/home/slicybtw/Desktop/RightLy/RightLy.csproj]
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
dotnet build gave me error
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
im on linux, how can i run it then?
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
ok
37 replies
CC#
Created by slicybtw on 1/31/2024 in #help
C# not recognizing packages
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet" Version="0.0.1" />
<PackageReference Include="RestSharp" Version="0.0.2" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet" Version="0.0.1" />
<PackageReference Include="RestSharp" Version="0.0.2" />
</ItemGroup>

</Project>
37 replies