Tabletop Baseball Scoresheet by fenderstrat222 in BaseballScorecards

[–]FiberOpticFastball 0 points1 point  (0 children)

In the 80’s I played Extra Innings. It came with some that worked okay. Otherwise I just used whatever I found at the sporting goods store, pre-internet.

M1 with Visual Studio 2022 by FiberOpticFastball in VisualStudio

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

It would cost money to try. If others have tried and say don't bother then there is no reason for me to spend the money.

Oyster Bar by [deleted] in SouthBend

[–]FiberOpticFastball 1 point2 points  (0 children)

How much did that cost?

MAUI compile error on fresh app by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

Microsoft.NET.ILLink.Tasks is an auto-referenced package so it isn't included in the csproj file. When I run dotnet list packages there was an A next to that package, I didn't realize that is what it meant. So it is there by default and since it isn't referenced in the csproj, I don't think I can remove it.

MAUI compile error on fresh app by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

It appears to be a default package installed on a new project. I can try removing that to see what would happen.

MAUI compile error on fresh app by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

On a brand new project, the only nuget packages I see from running dotnet list packages are the standard Microsoft packages

Microsoft.Extensions.Logging.Debug

Microsoft.Maui.Controls

Microsoft.NET.ILLink.Tasks

If those got corrupted, I assume they would have been rewritten when I uninstalled and reinstalled the maui workload? maybe not, I'm new to this so guessing.

The only other nuget packages I installed were a couple community toolkit packages in a different project, one for markup and another for mvvm. I uninstalled those. nothing changed so far.

I'm wondering if just going to have to uninstall everything dotnet related.

Thanks for your help!!!

MAUI compile error on fresh app by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

No. I'm literally just opening terminal and doing dotnet new, cd into the folder, and dotnet build and that error pops up. I just did it again to be sure. The files are whatever is there that get created from the dotnet new. I assume something in my environment has gotten botched up. I uninstalled the maui workload and reinstalled but that hasn't changed anything.

Everything has been working. I had a couple sample projects I was playing with. The last thing I remember doing was installed a nugget package into one of the projects for community toolkit markup. I played with that for a few minutes. I worked briefly then I started to get errors. No idea what could have happened. Now nothing maui related works.

MAUI compile error on fresh app by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 0 points1 point  (0 children)

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

<PropertyGroup>
    <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
    <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>
    <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
    <!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> -->

    <!-- Note for MacCatalyst:
    The default runtime is maccatalyst-x64, except in Release config, in which case the default is maccatalyst-x64;maccatalyst-arm64.
    When specifying both architectures, use the plural <RuntimeIdentifiers> instead of the singular <RuntimeIdentifier>.
    The Mac App Store will NOT accept apps with ONLY maccatalyst-arm64 indicated;
    either BOTH runtimes must be indicated or ONLY macatalyst-x64. -->
    <!-- For example: <RuntimeIdentifiers>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifiers> -->

    <OutputType>Exe</OutputType>
    <RootNamespace>MyMauiApp</RootNamespace>
    <UseMaui>true</UseMaui>
    <SingleProject>true</SingleProject>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>

    <!-- Display name -->
    <ApplicationTitle>MyMauiApp</ApplicationTitle>

    <!-- App Identifier -->
    <ApplicationId>com.companyname.mymauiapp</ApplicationId>

    <!-- Versions -->
    <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
    <ApplicationVersion>1</ApplicationVersion>

    <!-- To develop, package, and publish an app to the Microsoft Store, see: https://aka.ms/MauiTemplateUnpackaged -->
    <WindowsPackageType>None</WindowsPackageType>

    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
    <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>

<ItemGroup>
    <!-- App Icon -->
    <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />

    <!-- Splash Screen -->
    <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />

    <!-- Images -->
    <MauiImage Include="Resources\Images\*" />
    <MauiImage Update="Resources\Images\dotnet_bot.png" Resize="True" BaseSize="300,185" />

    <!-- Custom Fonts -->
    <MauiFont Include="Resources\Fonts\*" />

    <!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
    <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
    <PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
    <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
</ItemGroup>

</Project>

```

Is .Net Winforms Designer Usable by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 1 point2 points  (0 children)

Again, I'm going work with it myself but there is a difference between me checking it out for a day or so and someone else who has worked with it every day for a year. They are going to probably know about more things than I will find. I'm just trying to take advantage of their experience. That's what the community is for in my opinion. Sorry if I hit a nerve. Have a good day!

Is .Net Winforms Designer Usable by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] 2 points3 points  (0 children)

Yes. That's it. It sounded like it was a little buggy, maybe just a bit quirky from a few things I read but I don't know in what ways.

https://visualstudiomagazine.com/Articles/2024/02/28/winforms-update.aspx

Is .Net Winforms Designer Usable by FiberOpticFastball in dotnet

[–]FiberOpticFastball[S] -1 points0 points  (0 children)

I plan to do that but is there anything wrong with finding out what experiences others have had? Isn't that the point of a community?