-
-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
54 lines (54 loc) · 3.93 KB
/
Directory.Packages.props
File metadata and controls
54 lines (54 loc) · 3.93 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
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<DotnetLibrariesVersion>8.0.0</DotnetLibrariesVersion>
</PropertyGroup>
<ItemGroup>
<GlobalPackageReference Include="GitVersion.MsBuild" Version="5.12.0" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="DiscordRichPresence" Version="1.2.1.24" />
<PackageVersion Include="Facepunch.Steamworks" Version="2.4.1" />
<PackageVersion Include="ImeSharp" Version="1.4.1" />
<PackageVersion Include="lzo.net" Version="0.0.6" />
<PackageVersion Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="$(DotnetLibrariesVersion)" />
<PackageVersion Include="OpenMcdf" Version="2.4.1" />
<PackageVersion Include="SixLabors.ImageSharp" Version="2.1.11" />
<PackageVersion Include="System.DirectoryServices" Version="$(DotnetLibrariesVersion)" />
<PackageVersion Include="System.Management" Version="$(DotnetLibrariesVersion)" />
<PackageVersion Include="System.Private.Uri" Version="4.3.2" />
<PackageVersion Include="System.Text.Encoding.CodePages" Version="$(DotnetLibrariesVersion)" />
<PackageVersion Include="System.Text.Json" Version="8.0.6" />
<PackageVersion Include="Ude.NetStandard" Version="1.2.0" />
</ItemGroup>
<ItemGroup Condition="'$(MSBuildProjectName)' == 'ClientCore' Or '$(MSBuildProjectName)' == 'ClientGUI' Or '$(MSBuildProjectName)' == 'DTAConfig' Or '$(MSBuildProjectName)' == 'DXMainClient' Or '$(MSBuildProjectName)' == 'ClientUpdater'">
<ProjectReference Include="$(MSBuildThisFileDirectory)TranslationNotifierGenerator\TranslationNotifierGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<!-- Polyfill on .NET 4.8 (SecondStageUpdater excluded) -->
<ItemGroup Condition="'$(MSBuildProjectName)' != 'SecondStageUpdater' And $(TargetFrameworkIdentifier) == '.NETFramework'">
<GlobalPackageReference Include="Polyfill" Version="9.9.0" />
<PackageReference Include="System.ValueTuple" Condition="$(TargetFramework.StartsWith('net46'))" />
<PackageVersion Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.Memory" Condition="$(TargetFrameworkIdentifier) == '.NETStandard' or $(TargetFrameworkIdentifier) == '.NETFramework' or $(TargetFramework.StartsWith('netcoreapp2'))" />
<PackageVersion Include="System.Memory" Version="4.6.3" />
<PackageReference Include="System.Threading.Tasks.Extensions" Condition="$(TargetFramework) == 'netstandard2.0' or $(TargetFramework) == 'netcoreapp2.0' or $(TargetFrameworkIdentifier) == '.NETFramework'" />
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.6.3" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Condition="$(TargetFrameworkIdentifier) == '.NETFramework'" />
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<Reference Include="System.IO.Compression" />
</ItemGroup>
<!-- I don't know how to write it. but I think we should make a note at here. -->
<ItemGroup Condition="'$(MSBuildProjectName)' == 'DXMainClient'">
<!-- These two packages are explicitly imported to get rid of Error NU1605 Detected package downgrade. -->
<!-- This error is only raised when both .NET 4 and .NET 8 exists in TargetFrameworks: -->
<!-- <TargetFrameworks>net48;net8.0-windows</TargetFrameworks> -->
<!-- and -p:Engine=WindowsDX -f net48 -->
<PackageReference Include="NETStandard.Library" />
<PackageVersion Include="NETStandard.Library" Version="2.0.3" />
<PackageReference Include="System.IO.FileSystem" />
<PackageVersion Include="System.IO.FileSystem" Version="4.3.0" />
</ItemGroup>
</Project>