Skip to content

Commit a352602

Browse files
committed
Rename repository documentation to Basalt.NET
1 parent 20a7053 commit a352602

26 files changed

Lines changed: 24 additions & 24 deletions

BasaltCore/BasaltCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Description>Local durable background jobs, scheduling and workflow engine for .NET applications.</Description>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<PackageTags>jobs;durable;background;WPF;scheduling;workflow</PackageTags>
13-
<RepositoryUrl>https://github.com/Vanderhell/Basalt</RepositoryUrl>
13+
<RepositoryUrl>https://github.com/Vanderhell/Basalt.NET</RepositoryUrl>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
1616
</PropertyGroup>

BasaltCore/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Basalt
1+
# Basalt.NET
22

3-
Basalt is a local durable background-job engine for .NET applications.
3+
Basalt.NET is a local durable background-job engine for .NET applications.
44

55
The v1 contract is at-least-once delivery: handlers must be idempotent. A
66
successful enqueue confirms durable submission, not handler completion. Native

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Changelog
1+
# Basalt.NET changelog
22

3-
All notable changes to Basalt are documented here.
3+
All notable changes to Basalt.NET are documented here.
44

55
This project follows [Semantic Versioning](https://semver.org/): incompatible public or durable-format changes require a major version, backward-compatible features require a minor version, and backward-compatible fixes require a patch version. Prerelease identifiers may be used before a stable release.
66

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Basalt
1+
# Contributing to Basalt.NET
22

3-
Thank you for helping improve Basalt. Please open an issue before a large change, especially one affecting the public API or durable formats.
3+
Thank you for helping improve Basalt.NET. Please open an issue before a large change, especially one affecting the public API or durable formats.
44

55
## Development setup
66

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Basalt
1+
# Basalt.NET
22

33
<p align="center">
4-
<img src="images/logo3.png" alt="Basalt" width="640" />
4+
<img src="images/logo_3.png" alt="Basalt.NET" width="640" />
55
</p>
66

77
**Durable background jobs for .NET -- embedded when local, SQL Server when shared.**
88

9-
[![CI](https://github.com/Vanderhell/Basalt/actions/workflows/ci.yml/badge.svg)](https://github.com/Vanderhell/Basalt/actions/workflows/ci.yml)
9+
[![CI](https://github.com/Vanderhell/Basalt.NET/actions/workflows/ci.yml/badge.svg)](https://github.com/Vanderhell/Basalt.NET/actions/workflows/ci.yml)
1010
![License](https://img.shields.io/badge/license-MIT-blue.svg)
1111

12-
Basalt is a lightweight durable job, scheduling, and static-workflow engine for .NET applications. Run it inside an application with embedded storage, or let multiple processes share the same queue through SQL Server -- with the same managed API.
12+
Basalt.NET is a lightweight durable job, scheduling, and static-workflow engine for .NET applications. Run it inside an application with embedded storage, or let multiple processes share the same queue through SQL Server -- with the same managed API.
1313

1414
No separate job server is required.
1515

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Security policy
1+
# Basalt.NET security policy
22

33
## Supported versions
44

5-
Until Basalt reaches a stable release, security fixes target the latest commit on `main`.
5+
Basalt.NET security fixes target the latest commit on `main`.
66

77
## Reporting a vulnerability
88

consumer-wpf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Basalt WPF demo
1+
# Basalt.NET WPF demo
22

3-
`ConsumerWpf` is a real .NET Framework 4.7.2 WPF application using only the public managed Basalt API.
3+
`ConsumerWpf` is a real .NET Framework 4.7.2 WPF application using only the public managed Basalt.NET API.
44

55
Run it with `dotnet run --project consumer-wpf/ConsumerWpf.csproj`. Choose **Embedded** for a local durable store, or choose **SQL Server** and enter a connection string. The SQL demo uses Basalt's standard `basalt` schema in the selected database, so use an application-owned or test database.
66

docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Basalt public .NET API
1+
# Basalt.NET public API
22

33
## Getting started
44

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Architecture
1+
# Basalt.NET architecture
22

33
```text
44
Application

docs/cookbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cookbook
1+
# Basalt.NET cookbook
22

33
These recipes assume registered job types and a started `BasaltApplication` unless shown otherwise.
44

0 commit comments

Comments
 (0)