-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathAKSoftware.Localization.MultiLanguages.csproj
More file actions
49 lines (44 loc) · 2.08 KB
/
Copy pathAKSoftware.Localization.MultiLanguages.csproj
File metadata and controls
49 lines (44 loc) · 2.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Company>AK Software</Company>
<Authors>Ahmad Mozaffar</Authors>
<Description>AKSoftware.Localization.MultiLanguages is a .NET library that allows .NET developers to build applications that targets multiple languages very easy just with few lines of code</Description>
<Copyright>AK Software 2023</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://akmultilanguages.azurewebsites.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/aksoftware98/multilanguages</RepositoryUrl>
<PackageTags>AKSoftware, Languages, Localization, Globalization,</PackageTags>
<PackageReleaseNotes>Fix bugs and improve the performance and add the ability to store resource files in external folders</PackageReleaseNotes>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIcon>AkMultiLanguages.png</PackageIcon>
<AssemblyVersion>5.9.11</AssemblyVersion>
<FileVersion>5.9.11.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.9.11</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.csharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="YamlDotNet" Version="13.7.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="AkMultiLanguages.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="docs\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Reference Include="YamlDotNet">
<HintPath>..\..\..\..\..\Desktop\YamlDotNet.dll</HintPath>
</Reference>
</ItemGroup>
</Project>