1
- <?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project ToolsVersion =" 12.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
4
3
<PropertyGroup >
5
- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6
- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7
- <ProjectGuid >{9C695186-E886-422E-B2E1-AE6AA83E5B4B}</ProjectGuid >
8
- <OutputType >Library</OutputType >
9
- <AppDesignerFolder >Properties</AppDesignerFolder >
10
- <RootNamespace >DistributedMutex</RootNamespace >
11
- <AssemblyName >DistributedMutex</AssemblyName >
12
- <TargetFrameworkVersion >v4.6.1</TargetFrameworkVersion >
13
- <FileAlignment >512</FileAlignment >
14
- <SolutionDir Condition =" $(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" >..\</SolutionDir >
15
- <RestorePackages >true</RestorePackages >
16
- <TargetFrameworkProfile />
4
+ <TargetFramework >net8.0</TargetFramework >
5
+ <ImplicitUsings >enable</ImplicitUsings >
6
+ <Nullable >enable</Nullable >
17
7
</PropertyGroup >
18
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
19
- <DebugSymbols >true</DebugSymbols >
20
- <DebugType >full</DebugType >
21
- <Optimize >false</Optimize >
22
- <OutputPath >bin\Debug\</OutputPath >
23
- <DefineConstants >DEBUG;TRACE</DefineConstants >
24
- <ErrorReport >prompt</ErrorReport >
25
- <WarningLevel >4</WarningLevel >
26
- </PropertyGroup >
27
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
28
- <DebugType >pdbonly</DebugType >
29
- <Optimize >true</Optimize >
30
- <OutputPath >bin\Release\</OutputPath >
31
- <DefineConstants >TRACE</DefineConstants >
32
- <ErrorReport >prompt</ErrorReport >
33
- <WarningLevel >4</WarningLevel >
34
- </PropertyGroup >
35
- <ItemGroup >
36
- <Reference Include =" Azure.Core, Version=1.0.2.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" >
37
- <HintPath >..\packages\Azure.Core.1.0.2\lib\netstandard2.0\Azure.Core.dll</HintPath >
38
- </Reference >
39
- <Reference Include =" Azure.Storage.Blobs, Version=12.3.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" >
40
- <HintPath >..\packages\Azure.Storage.Blobs.12.3.0\lib\netstandard2.0\Azure.Storage.Blobs.dll</HintPath >
41
- </Reference >
42
- <Reference Include =" Azure.Storage.Common, Version=12.2.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, processorArchitecture=MSIL" >
43
- <HintPath >..\packages\Azure.Storage.Common.12.2.0\lib\netstandard2.0\Azure.Storage.Common.dll</HintPath >
44
- </Reference >
45
- <Reference Include =" Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
46
- <HintPath >..\packages\Microsoft.Bcl.AsyncInterfaces.1.0.0\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath >
47
- </Reference >
48
- <Reference Include =" System" />
49
- <Reference Include =" System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
50
- <HintPath >..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll</HintPath >
51
- </Reference >
52
- <Reference Include =" System.Core" />
53
- <Reference Include =" System.Diagnostics.DiagnosticSource, Version=4.0.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
54
- <HintPath >..\packages\System.Diagnostics.DiagnosticSource.4.6.0\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath >
55
- </Reference >
56
- <Reference Include =" System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
57
- <HintPath >..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath >
58
- </Reference >
59
- <Reference Include =" System.Numerics" />
60
- <Reference Include =" System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" >
61
- <HintPath >..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath >
62
- </Reference >
63
- <Reference Include =" System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" >
64
- <HintPath >..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath >
65
- </Reference >
66
- <Reference Include =" System.Threading.Tasks.Extensions, Version=4.2.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
67
- <HintPath >..\packages\System.Threading.Tasks.Extensions.4.5.2\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll</HintPath >
68
- </Reference >
69
- </ItemGroup >
70
- <ItemGroup >
71
- <Compile Include =" BlobDistributedMutex.cs" />
72
- <Compile Include =" BlobLeaseManager.cs" />
73
- </ItemGroup >
74
- <ItemGroup >
75
- <Folder Include =" Properties\" />
76
- </ItemGroup >
8
+
77
9
<ItemGroup >
78
- <None Include =" app.config" />
79
- <None Include =" packages.config" />
10
+ <PackageReference Include =" Azure.Storage.Blobs" Version =" 12.19.1" />
80
11
</ItemGroup >
81
- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82
- <Import Project =" $(SolutionDir)\.nuget\NuGet.targets" Condition =" Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
83
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84
- Other similar extension points exist, see Microsoft.Common.targets.
85
- <Target Name="BeforeBuild">
86
- </Target>
87
- <Target Name="AfterBuild">
88
- </Target>
89
- -->
90
- </Project >
12
+
13
+ </Project >
0 commit comments