-
Notifications
You must be signed in to change notification settings - Fork 0
/
OftobTech.AppLocalizator.csproj
55 lines (50 loc) · 2.17 KB
/
OftobTech.AppLocalizator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0;net6.0;net7.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>OftobTech</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>OftobTech.AppLocalizator</PackageId>
<Title>App Localizator</Title>
<Authors>Konstantin Chizhov</Authors>
<Company>OftobTech</Company>
<Version>1.0.0.14-alpha</Version>
<Product>AppLocalizator</Product>
<AnalysisLevel>6.0</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<SignAssembly>False</SignAssembly>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<RepositoryUrl>https://github.com/oftob-tech/AppLocalizator</RepositoryUrl>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>A powerful tool that provides the ability to translate text on the fly, which can be useful when developing RestAPI with multilingualism
</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.15" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Update="ConfigResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ConfigResource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="ConfigResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ConfigResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>