changepacks-csharp 0.2.18

C# (.NET) project support for changepacks (NuGet)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # changepacks-csharp
//!
//! C#/.NET project support for changepacks.
//!
//! Implements project discovery and version management for .csproj XML files. Uses quick-xml
//! for parsing with format preservation. Supports `MSBuild` project files with version elements
//! and handles both single projects and multi-project solutions.

mod dry_run;
pub mod finder;
pub mod package;
pub mod workspace;
mod xml_utils;

pub use finder::CSharpProjectFinder;