-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathMicrosoft.DotNet.ImageBuilder.csproj
More file actions
53 lines (48 loc) · 2.97 KB
/
Microsoft.DotNet.ImageBuilder.csproj
File metadata and controls
53 lines (48 loc) · 2.97 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishTrimmed>False</PublishTrimmed>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>Microsoft.DotNet.ImageBuilder</RootNamespace>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Explicit Nullable setting required for Docker builds from src/ context (won't see root Directory.Build.props).
Tracking issue for fixing context directory: https://github.com/dotnet/docker-tools/issues/1592 -->
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<!-- The "Cottle" templating package does not have a strong name. -->
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Containers.ContainerRegistry" Version="1.3.0" />
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="Azure.ResourceManager.ContainerRegistry" Version="1.4.0" />
<PackageReference Include="Cottle" Version="2.1.0" />
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
<PackageReference Include="Microsoft.Azure.Kusto.Ingest" Version="14.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.13" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.14" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.13" />
<PackageReference Include="Microsoft.Deployment.DotNet.Releases" Version="1.0.1" />
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="9.0.0-beta.25255.5" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" Version="19.225.2" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
<PackageReference Include="Octokit" Version="14.0.0" />
<PackageReference Include="OrasProject.Oras" Version="0.5.0" />
<PackageReference Include="Polly" Version="8.6.6" />
<PackageReference Include="System.Formats.Cbor" Version="9.0.0" />
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
<PackageReference Include="Polly.RateLimiting" Version="8.6.6" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.20574.7" />
<PackageReference Include="System.Linq.Async" Version="7.0.0" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
<!-- CVE-2024-0056: Upgrade System.Data.SqlClient implicitly referenced by Microsoft.TeamFoundationServer.Client -->
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<!-- CVE-2024-38095: Upgrade version of System.Formats.Asn1 implicitly referenced by Microsoft.DotNet.VersionTools -->
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ImageBuilder.Models\Microsoft.DotNet.ImageBuilder.Models.csproj" />
</ItemGroup>
</Project>