rules_dotnet icon indicating copy to clipboard operation
rules_dotnet copied to clipboard

.NET rules for Bazel

Results 67 rules_dotnet issues
Sort by recently updated
recently updated
newest added

Using `dotnet publish` it is possible to generate a folder with a DLL and all of its dependencies. Is there an equivalent in `rules_dotnet`?

This issue is just an overview of the tasks that need to be done to merge features from the following repositories: * bazelbuild/rules_dotnet - This repo * AFASResearch/rules_dotnet - https://github.com/AFASResearch/rules_dotnet...

The landsacape for .Net in Bazel is pretty scattered at the moment. The following rules are the ones that I know of: * https://github.com/bazelbuild/rules_dotnet * https://github.com/Brightspace/rules_csharp * https://github.com/samhowes/rules_msbuild * https://github.com/AFASResearch/rules_dotnet...

I don't get debugging in VS code when I build with Bazel. Does anyone have succeeded with this? Here is what I've tried with my executable Foo. If you have...

# Robust dependency management Participants: @hsyed-dojo and @tomdegoede Reviewers: @purkhusid Dependency management is arguably the most complex aspect of managing a Bazel build at scale. A dependency management solution is...

Hello Folks. We at Paymentsense/Dojo are considering moving to Bazel for production builds. We operate poly repos and they are in the hundreds. I'm wondering if full project workspace /...

[Fable](fable.io/) is an F# to JavaScript compiler. Here's how Fable works: 1. Fetch Fable executable from Nuget `dotnet tool install Fable` 2. Run Fable on a `.fsproj` file`dotnet fable ./my-project.fsproj`...

I put together a very simple example project: ``` hello/ ├── BUILD.bazel └── Program.cs ``` Where `hello/BUILD.bazel`: ``` load("@io_bazel_rules_dotnet//dotnet:defs.bzl", "dotnet_binary") dotnet_binary( name = "hello.exe", srcs = glob(["**/*.cs"]), deps = [...

Many monorepo enthusiasts insist that dependencies are checked into the source control system. The .NET ecosystem supports this by use of a custom NuGet feed. In Visual Studio, this can...

enhancement