2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 05:23:13 +00:00
This commit is contained in:
2024-11-09 01:46:00 +03:00
parent 2006c47013
commit 2dc373770c
30 changed files with 155 additions and 114 deletions

View File

@ -32,12 +32,12 @@ namespace Esiur.AspNetCore.Example
public partial class MyResource
{
[Annotation("sss","bb")][Export] int number;
[Annotation("A1","B2")][Export] int number;
[Export]
public string[] GetInfo() => new string[] { Environment.MachineName, Environment.UserName, Environment.CurrentDirectory,
Environment.CommandLine, Environment.OSVersion.ToString(), Environment.ProcessPath };
Environment.CommandLine, Environment.OSVersion.ToString()};
}
}