Florian

Results 90 comments of Florian

This is a weird one. According to [Xcode 15's Release Notes](https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes), the minimum supported watchOS version is 4.0: [The manifest for swift-log](https://github.com/apple/swift-log/blob/1.5.3/Package.swift) does not list any supported platforms. In my...

For the record, I've opened [an issue](https://github.com/apple/swift-package-manager/issues/6974) with the Swift package manager for this.

@waahm7 I can confirm this to be fixed using the following versions: - software.amazon.aswssdk:bom -> 2.26.22 - software.amazon.awssdk.crt:aws-crt -> 0.30.3 Thank you!

For those blocked by EF Core CLI not working w/o this, you can downgrade the CLI tools: ```bash dotnet tool uninstall --global dotnet-ef dotnet tool install --global --version 8.0.1 dotnet-ef...

Note: The logs actually say something about an invalid ZIP - which is because the zip contains the 403 response from sonatype: ``` ERROR: Failed to run 'build' command. ERROR:...

Just a random idea: Maybe you could "collapse" the window at the top of the screen instead? If its view is no longer constraint to the top at that point,...

The problem is located somewhere within the implementation of `remove_from_project`. As far as I have seen, only the references are removed. This leaves the `PBXBuildFile` inside the build phase without...

Why don't you include it enclosed with `#if os(iOS) [...] #endif`? That way it would only be available on iOS.

This seems to fail if the `csproj` has spaces in its name: ``` 2024-09-26T06:18:14.0831914Z Running for project file [VINMAPP File API Client.csproj] 2024-09-26T06:18:14.0833473Z Updating project [/home/dependabot/dependabot-updater/repo/VINMAPP File API Client.csproj] 2024-09-26T06:18:14.0834964Z...

@na1307 I've forked the project and found more issues where paths are not quoted. I'm working on a fix.