-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAptacode.Forms.Shared.csproj
More file actions
41 lines (38 loc) · 1.64 KB
/
Aptacode.Forms.Shared.csproj
File metadata and controls
41 lines (38 loc) · 1.64 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0</TargetFrameworks>
<LangVersion>9</LangVersion>
<AssemblyName>Aptacode.Forms.Shared</AssemblyName>
<RootNamespace>Aptacode.Forms.Shared</RootNamespace>
<ApplicationIcon>Logo.ico</ApplicationIcon>
<PackageIcon>Logo.png</PackageIcon>
<PackageIconUrl />
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>Create cross platform forms using C# .net</Description>
<Product>Aptacode.Forms</Product>
<Company>Aptacode</Company>
<Authors>Aptacode</Authors>
<RepositoryUrl>https://github.com/Timmoth/Aptacode.Forms</RepositoryUrl>
<Copyright>MIT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Timmoth/Aptacode.Forms</PackageProjectUrl>
<PackageId>Aptacode.Forms.Shared</PackageId>
<Version>1.0.1.5</Version>
<AssemblyVersion>1.0.1.5</AssemblyVersion>
<FileVersion>1.0.1.5</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aptacode.CSharp.Common.Patterns" Version="1.0.0.33" />
<PackageReference Include="Aptacode.CSharp.Common.Persistence" Version="1.0.0.30" />
<PackageReference Include="Aptacode.CSharp.Common.Utilities" Version="1.0.0.30" />
<PackageReference Include="Aptacode.Expressions" Version="1.0.4" />
<PackageReference Include="JsonSubTypes" Version="1.8.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="..\Resources\Logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>