-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathCqrs.Ninject.Azure.Storage.csproj
More file actions
94 lines (81 loc) · 3.66 KB
/
Cqrs.Ninject.Azure.Storage.csproj
File metadata and controls
94 lines (81 loc) · 3.66 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;net48;netstandard2.0</TargetFrameworks>
<title>Microsoft Azure Blob and Table Storage for CQRS.NET</title>
<Authors>Chinchilla Software</Authors>
<Company>Chinchilla Software</Company>
<Copyright>Copyright © 2025</Copyright>
<Description>Use Ninject as your IoC container of choice with Microsoft Azure Blob and Table Storage for CQRS.NET</Description>
<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.0
- Upgraded to Azure.Data.Tables and Azure.Storage.Blobs version 12
</PackageReleaseNotes>
<PackageIcon>images\icon.png</PackageIcon>
<readme>README.md</readme>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageTags>CQRS;CQRS.NET;Azure Blob Storage;BlobStorage;Table Storage;TableStorage;Ninject</PackageTags>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="Cqrs.Ninject.Azure.Storage.xml" />
<None Remove="Tools\Create-Log-Table.sql" />
</ItemGroup>
<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>
<PropertyGroup>
<OutputType>library</OutputType>
<DocumentationFile>Cqrs.Ninject.Azure.Storage.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Ninject" Version="3.3.4" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' OR '$(TargetFramework)' == 'net48' ">
<PackageReference Include="cdmdotnet.AutoMapper" Version="1.0.16.9" />
<PackageReference Include="Ninject" Version="3.2.2" />
<PackageReference Include="Ninject.Extensions.Wcf" Version="3.2.2" />
<PackageReference Include="Ninject.Web.Common" Version="3.2.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Data.Tables" Version="12.9.1" />
<PackageReference Include="Chinchilla.StateManagement" Version="4.2.11" />
<PackageReference Include="Chinchilla.Logging" Version="5.3.46" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Azure\Cqrs.Azure.Storage\Cqrs.Azure.Storage.csproj" />
<ProjectReference Include="..\..\..\Cqrs\Cqrs.csproj" />
<ProjectReference Include="..\..\Cqrs.Ninject\Cqrs.Ninject.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="REM IF NOT EXIST "$(ProjectDir)Tools" MKDIR "$(ProjectDir)Tools"
IF EXIST "$(SolutionDir)Framework\Cqrs\Tools\install.ps1" COPY /Y "$(SolutionDir)Framework\Cqrs\Tools\install.ps1" "$(ProjectDir)Tools\install.ps1"" />
</Target>
</Project>