-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathCqrs.DependencyInjection.csproj
More file actions
95 lines (79 loc) · 3.41 KB
/
Cqrs.DependencyInjection.csproj
File metadata and controls
95 lines (79 loc) · 3.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<title>Microsoft DI for CQRS.NET</title>
<Authors>Chinchilla Software</Authors>
<Company>Chinchilla Software</Company>
<Description>Use DI with CQRS.NET</Description>
<Copyright>Copyright © 2025</Copyright>
<PackageLicenseFile></PackageLicenseFile>
<PackageProjectUrl>https://github.com/Chinchilla-Software-Com/CQRS</PackageProjectUrl>
<RepositoryUrl>https://github.com/Chinchilla-Software-Com/CQRS</RepositoryUrl>
<PackageReleaseNotes>
Version 6.0
- Removed .NET 4.0, .NET 4.5, .NET 4.5.1, .NET 4.5.2, .NET 4.6 and , .NET 4.6.2 support. The minimum .NET Framework version is now .NET 4.7.2.
- Deprecated .NET 6.0, replaced with .NET 8.0
Version 5.2
- Refactored .NET Standard 2.0 to be far now async/await able... means some breaking changes as method names and return types change.
Version 5.1
- Addressed a poor default resolver that could result in singletons being transient causing leaks.
Version 5.0
- MS DI support added
</PackageReleaseNotes>
<PackageIcon>images\icon.png</PackageIcon>
<readme>README.md</readme>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageTags>CQRS;CQRS.NET;Pub/Sub;Microservices;</PackageTags>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="tools\init.ps1">
<Pack>True</Pack>
<PackagePath>tools\</PackagePath>
</None>
<None Include="tools\install.ps1">
<Pack>True</Pack>
<PackagePath>tools\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\icon.png" Link="icon.png">
<Pack>True</Pack>
<PackagePath>images\</PackagePath>
</None>
<None Include="..\..\..\README.md" Link="Packaging\README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<PropertyGroup>
<OutputType>library</OutputType>
<DocumentationFile>Cqrs.DependencyInjection.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
<PackageReference Include="cdmdotnet.AutoMapper" Version="1.0.16.9" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Chinchilla.Logging.Azure" Version="5.3.46" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.9" />
</ItemGroup>
<ItemGroup>
<None Remove="Cqrs.DependencyInjection.xml" />
<None Remove="packages.config" />
<None Remove="Tools\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Cqrs\Cqrs.csproj" />
</ItemGroup>
</Project>