-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNorma.csproj
More file actions
50 lines (45 loc) · 1.56 KB
/
Norma.csproj
File metadata and controls
50 lines (45 loc) · 1.56 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>NormLang</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationIcon>images\Norma.ico</ApplicationIcon>
<Title>Norma Language</Title>
<Company>JBros Development</Company>
<Authors>Joseph H</Authors>
<Description>Library for using Norma in C# project</Description>
<PackageProjectUrl>https://github.com/JBrosDevelopment/Norma.git</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/JBrosDevelopment/Norma.git</RepositoryUrl>
<PackageTags>language;norma;programming</PackageTags>
<NeutralLanguage>aa</NeutralLanguage>
<PackageLicenseFile>LISENCE</PackageLicenseFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Content Include="images\Norma.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="images\Norma %28128px%29.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="images\Norma %28526px%29.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LISENCE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>