mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
256c3a7a53
Add a test for buildDotnetModule's `projectReferences = [ ... ];` feature, which is currently unused and therefore untested in nixpkgs.
9 lines
159 B
C#
9 lines
159 B
C#
namespace ProjectReferencesTest;
|
|
public static class Library
|
|
{
|
|
public static void Hello()
|
|
{
|
|
System.Console.WriteLine("Hello, World!");
|
|
}
|
|
}
|