Skip to content

Commit

Permalink
Add .NET buildpack stub
Browse files Browse the repository at this point in the history
  • Loading branch information
runesoerensen committed Apr 26, 2024
1 parent d43555f commit 1814b31
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
resolver = "2"
members = [
"buildpacks/dotnet",
"shared/inventory-updater"
]

Expand Down
7 changes: 7 additions & 0 deletions buildpacks/dotnet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "buildpack-heroku-dotnet"
rust-version.workspace = true
edition.workspace = true

[lints]
workspace = true
3 changes: 3 additions & 0 deletions buildpacks/dotnet/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, .NET world!");
}

0 comments on commit 1814b31

Please sign in to comment.