-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureUtils.fsproj
42 lines (34 loc) · 1.45 KB
/
AzureUtils.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Nam.AzureUtils</PackageId>
<Version>0.18.0</Version>
<Authors>Nicholas Miller</Authors>
<Description>
Miscellaneous utils for working with Azure from .NET SDK.
</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/nicholasamiller/azureutils</PackageProjectUrl>
<RepositoryUrl>https://github.com/nicholasamiller/azureutils</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Nicholas Miller</Copyright>
</PropertyGroup>
<ItemGroup>
<Compile Include="Exceptions.fs" />
<Compile Include="AzureBlobCache.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.24.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.12.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.25" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.25" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.25" />
<PackageReference Include="System.Text.Json" Version="6.0.4" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6.0.4" />
</ItemGroup>
</Project>