SkyAutoPro 1.0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package SkyAutoPro --version 1.0.0.1
NuGet\Install-Package SkyAutoPro -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SkyAutoPro" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SkyAutoPro --version 1.0.0.1
#r "nuget: SkyAutoPro, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SkyAutoPro as a Cake Addin
#addin nuget:?package=SkyAutoPro&version=1.0.0.1

// Install SkyAutoPro as a Cake Tool
#tool nuget:?package=SkyAutoPro&version=1.0.0.1

SkyAutoPro

简单的依赖注入框架 采用反射+特性的方式简单实现的依赖注入 样例

定义一个用户实体类

    class User
    {
        [InTag("用户名")]
        public string Name { get; set; }
        [InTag("密码")]
        public string PassWord { get; set; }
        [InTag("年龄")]
        public int Age { get; set; }

        public User(string name, string passWord, int age)
        {
            Name = name;
            PassWord = passWord;
            Age = age;
        }
        public override string ToString()
        {
            return JsonConvert.SerializeObject(this);
        }
    }
        static void Main(string[] args)
        {
            AutoPro autoPro = new AutoPro();
            autoPro.Add("年龄", 18);
            autoPro.Add("用户名", "sky");
            autoPro.Add("密码", "skyqwe");
            autoPro.Add<User>("用户1");
            autoPro.Add<User>("用户2");
            Console.WriteLine($"用户1:{ autoPro.Get<User>("用户1")}");
            Console.WriteLine($"用户2:{ autoPro.Get<User>("用户2")}");
        }        

更多的例子请查看 SkyAutoProTest 下的代码

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on SkyAutoPro:

Package Downloads
SkyExcelHelper

this is Excel ORM

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1.3 587 8/5/2021
1.0.1.2 307 8/4/2021
1.0.1.1 289 8/4/2021
1.0.1 289 8/4/2021
1.0.0.4 448 8/3/2021
1.0.0.3 339 8/3/2021
1.0.0.2 339 8/3/2021
1.0.0.1 381 8/3/2021
1.0.0 435 8/2/2021