Assuming I have a Package.swift like this below, and SomePackage from the dependencies produces warnings during swift build.
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "my-app",
dependencies: [
.package(url: "https://some-package.git", .upToNextMajor(from: "1.0"))
],
targets: [
.target(name: "Run", dependencies: ["SomePackage"]
]
)
How can I suppress those warnings from the dependencies, but keep the ones coming from my code?
xcodeprojtool which I run after generating my Xcode project. See: gist.github.com/siemensikkema/57ef1ce3340e32b72dc59e44bc37b477 I adjust it to make exceptions for the frameworks that are generating warnings that I don't care about (in my case when working with Vapor 2).