forked from Azure/autorest.csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages.Data.props
52 lines (46 loc) · 3.04 KB
/
Packages.Data.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Dependency versions to mimic azure-sdk-for-net build system. -->
<!-- Test only dependencies. -->
<ItemGroup Condition="'$(IsTestGenerationTestProject)' == 'true' Or '$(IsUnitTestProject)' == 'true'">
<PackageReference Update="Moq" Version="[4.18.2]" />
</ItemGroup>
<ItemGroup Condition="'$(IsTestGenerationTestProject)' == 'true'">
<!-- Include the basic related files for the test framework to ensure our generated test code could build here-->
<Compile Include="$(FakeAzureCoreTestFrameworkSources)/RecordedTestMode.cs" LinkBase="Shared/TestFramework" />
<Compile Include="$(FakeAzureCoreTestFrameworkSources)/RecordedTestBase.cs" LinkBase="Shared/TestFramework" />
<Compile Include="$(FakeAzureCoreTestFrameworkSources)/TestEnvironment.cs" LinkBase="Shared/TestFramework" />
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('.Tests'))">
<PackageReference Update="Azure.Identity" Version="1.11.4" />
<PackageReference Update="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.0.0" />
</ItemGroup>
<!-- Library only dependencies. -->
<ItemGroup Condition="'$(IsTestGenerationSrcProject)' == 'true'">
<PackageReference Update="System.Text.Json" Version="4.7.2" />
<!-- Include analyzers so that we see issues in this repo before we do a regen preview-->
<PackageReference Update="Azure.ClientSdk.Analyzers" Version="0.1.1-dev.20240813.2" PrivateAssets="All" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0" PrivateAssets="All" />
<PackageReference Update="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.2" PrivateAssets="All" />
</ItemGroup>
<!-- All csproj dependencies. -->
<ItemGroup>
<PackageReference Update="NUnit" Version="3.13.2" />
<PackageReference Update="System.ClientModel" Version="1.1.0-beta.3" />
<PackageReference Update="Azure.Core" Version="1.42.0" />
<PackageReference Update="Azure.Core.Experimental" Version="0.1.0-preview.18" />
<PackageReference Update="Azure.ResourceManager" Version="1.13.0-alpha.20240815.7" />
<PackageReference Update="Azure.Core.Expressions.DataFactory" Version="1.0.0" />
<PackageReference Update="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="6.0.1" />
<PackageReference Update="CommandLineParser" Version="2.9.1" />
<PackageReference Update="Humanizer.Core" Version="2.13.14" />
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.1.0" />
<PackageReference Update="System.Text.Json" Version="4.7.2" />
<PackageReference Update="YamlDotNet" Version="11.2.1" />
<PackageReference Update="System.Memory" Version="4.5.4" />
<PackageReference Update="NuGet.Configuration" Version="6.8.0" />
<PackageReference Update="Microsoft.Build" Version="16.11.0" />
</ItemGroup>
</Project>