We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f1188 commit fb1ca4cCopy full SHA for fb1ca4c
src/ExampleLibrary/Example.cs
@@ -0,0 +1,15 @@
1
+/*
2
+This library is just a basic example of
3
+something your webpage may need to call.
4
+
5
+Place it in the 'references' folder and
6
+it will become available to both the
7
+runner and compiler automatically
8
+*/
9
10
+namespace ExampleLibrary;
11
+public class MyCoolThing(int number)
12
+{
13
+ private readonly int BestNumber = number;
14
+ public string AmazingMethod => $"Hello World! [{BestNumber}]";
15
+}
src/ExampleLibrary/ExampleLibrary.csproj
@@ -0,0 +1,9 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ </PropertyGroup>
+</Project>
0 commit comments