-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathIon.csproj
More file actions
77 lines (67 loc) · 2.26 KB
/
Ion.csproj
File metadata and controls
77 lines (67 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>preview</LangVersion>
<TargetFramework>net9.0-windows</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<Authors>Ion</Authors>
<Company>Ion</Company>
<Copyright>No rights reserved.</Copyright>
<Description></Description>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryUrl>https://github.com/ionsharp/</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>Ion</AssemblyName>
<AssemblyTitle>Ion</AssemblyTitle>
<RootNamespace>Ion</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<NoWarn>MSB3290;NU1701;8509;8524;8600;8601;8604;8625</NoWarn>
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>Logo.png</PackageIcon>
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ionsharp/Ion</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageTags>ion;core;net;wpf;windows</PackageTags>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<Configurations>Debug</Configurations>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Numeral\Area\Area+MN.cs" />
<Compile Remove="Numeral\Size\Size+MN.cs" />
<Compile Remove="Numeral\Size\Size+N.cs" />
<Compile Remove="Reflect\InstanceStyle.cs" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="project.json" />
<None Remove="project.lock.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.5.1" />
<PackageReference Include="System.CodeDom" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>