-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathSIL.WritingSystems.csproj
More file actions
58 lines (51 loc) · 2.54 KB
/
SIL.WritingSystems.csproj
File metadata and controls
58 lines (51 loc) · 2.54 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
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(TargetFrameworks);netstandard2.0</TargetFrameworks>
<Description>SIL.WritingSystems contains classes for managing and persisting writing systems using the Locale Data Markup Language (LDML) format. This library also contains classes for processing IETF (BCP-47) language tags and accessing the SIL Locale Data Repository (SLDR).</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'net48' ">
<DefineConstants>$(DefineConstants);NETFRAMEWORK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.11.1" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Markdig.Signed" Version="0.37.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="SIL.ReleaseTasks" Version="3.1.1" PrivateAssets="All" />
<PackageReference Include="icu.net" Version="3.0.1" />
<PackageReference Include="Spart" Version="1.0.0" />
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web" Condition=" $(DefineConstants.Contains('NETFRAMEWORK')) " />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SIL.Core\SIL.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="CLDRResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>CLDRResources.resx</DependentUpon>
</Compile>
<Compile Update="LanguageRegistryResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>LanguageRegistryResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="CLDRResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CLDRResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="LanguageRegistryResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>LanguageRegistryResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>