-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoomFireAlgo.csproj
69 lines (57 loc) · 2.79 KB
/
DoomFireAlgo.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
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>OrbitalShell.Module.DoomFireAlgo</RootNamespace>
<AssemblyName>OrbitalShell.Module.DoomFireAlgo</AssemblyName>
<NeutralLanguage>en-US</NeutralLanguage>
<ApplicationIcon>assets\robotazteque.ico</ApplicationIcon>
<PackageId>OrbitalShell-Module-DoomFireAlgo</PackageId>
<IsPackable>true</IsPackable>
<Authors>Orbital Shell team</Authors>
<Company>Orbital Shell</Company>
<Product>doom fire algorithm C# ANSI version orbital shell module</Product>
<Description>a simple module for orbital shell that add a command running the famous doom fire algorithm (C# ANSI version)</Description>
<Copyright>(c) Orbital Shell 2020</Copyright>
<Version>1.2.0</Version>
<InformationalVersion>1.2.0</InformationalVersion>
<PackageReleaseNotes>make within new-module on 2 fev 21 - fix compat for kernel 1.0.9</PackageReleaseNotes>
<ApplicationIcon>assets\robotazteque.ico</ApplicationIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://orbitalshell.github.io/Orbital-Shell/</PackageProjectUrl>
<RepositoryUrl>https://github.com/franck-gaspoz/Doom-Fire-Algo.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>prompt git git-branch git-status bash linux shell interactive csharp netcore5 netstandard21 netcore31 cli command-line-tool command-line-parser command-line-interface</PackageTags>
<PackageIcon>content\assets\robotazteque.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<None Remove="assets\robotazteque.ico" />
<None Include="assets\robotazteque.ico">
<Pack>True</Pack>
<PackagePath>contentFiles/any/netcoreapp3.1/assets/;content/assets/</PackagePath>
</None>
<None Remove="assets\robotazteque.png" />
<None Include="assets\robotazteque.png">
<Pack>True</Pack>
<PackagePath>contentFiles/any/netcoreapp3.1/assets/;content/assets/</PackagePath>
</None>
<None Include="LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>contentFiles/any/netcoreapp3.1/;content/</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
<None Include="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>contentFiles/any/netcoreapp3.1/;content/</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="orbitalshell-kernel" Version="1.0.9">
<ExcludeAssets>contentfiles</ExcludeAssets>
</PackageReference>
</ItemGroup>
</Project>