-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCodingSeb.Localization.FodyAddin.csproj
59 lines (59 loc) · 2.42 KB
/
CodingSeb.Localization.FodyAddin.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
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>CodingSeb</Authors>
<Copyright>Copyright © Coding Seb 2020</Copyright>
<Description>Inject the code that generate PropertyChanged event on property that has the attribute 'Localize' when the Language of the Localization changed</Description>
<PackageLicenseExpression></PackageLicenseExpression>
<!-- PackageTags are optional. Defaults to 'ILWeaving, Fody, Cecil, AOP' -->
<PackageTags>Localization, Fody</PackageTags>
<PackageOutputPath>$(SolutionDir)/FodyNuget</PackageOutputPath>
<PackageProjectUrl>https://github.com/codingseb/Localization</PackageProjectUrl>
<RepositoryUrl>https://github.com/codingseb/Localization</RepositoryUrl>
<PackageId>CodingSebLocalization.Fody</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile>
<AssemblyName>CodingSeb.Localization.FodyAddin</AssemblyName>
<RootNamespace>CodingSeb.Localization</RootNamespace>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>1.3.1.0</AssemblyVersion>
<FileVersion>1.3.1.0</FileVersion>
<PackageReleaseNotes>
* Update links for package
</PackageReleaseNotes>
<Version>1.3.1</Version>
<IncludeSymbols>True</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fody" Version="6.8.1" PrivateAssets="none" />
<PackageReference Include="FodyPackaging" Version="6.8.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Localization\Localization.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Localization\bin\$(Configuration)\netstandard2.0\CodingSeb.Localization.dll">
<Pack>true</Pack>
<PackagePath>weaver</PackagePath>
<IncludeInPackage>true</IncludeInPackage>
<BuildAction>Content</BuildAction>
</None>
<None Include="..\WeaverDependencies\*.*">
<Pack>true</Pack>
<PackagePath>weaver</PackagePath>
<IncludeInPackage>true</IncludeInPackage>
<BuildAction>Content</BuildAction>
</None>
</ItemGroup>
</Project>