You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sbom-tool targets both .NET 6 and .NET 8 therefore it is possible to produce binaries for both. We have seen issues when attempting to run the tool using the .NET 6 binaries ([#223](https://github.com/microsoft/sbom-tool/issues/223)) so for these scenarios we recommend targeting .NET 8. You can do this by following these steps:
52
+
The tool provides an osx-arm64 version of the tool. If you need to build one locally, you can build it as follows:
53
53
54
54
The following command will produce a dll that can be executed on ARM based devices running OSX and can be modified to suit your needs:
Because of our multi-targeting, a target framework must be specified when using the dotnet publish command:
69
-
70
-
```
71
-
dotnet publish -f net8.0
72
-
```
73
-
74
66
## Building using Codespaces
75
67
76
68
After accessing [GitHub Codespaces](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/about-codespaces), select the `Code` button from the [repository homepage](https://github.com/microsoft/sbom-tool), then select `Open with Codespaces`. That's it! Users will then have a full developer environment that supports debugging, testing, auto complete, jump to definitions, and everything that one would expect.
0 commit comments