-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContextualProgramming.csproj
More file actions
58 lines (53 loc) · 2.53 KB
/
ContextualProgramming.csproj
File metadata and controls
58 lines (53 loc) · 2.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<Version>1.1.1</Version>
<Authors>Lucas Stertz</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/lstertz/ContextualProgramming</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>Recorded in the changelog at: https://github.com/lstertz/ContextualProgramming/blob/master/CHANGELOG.md</PackageReleaseNotes>
<Description>An SDK for developing in accordance to the Contextual Programming paradigm.</Description>
<PackageProjectUrl>https://github.com/lstertz/ContextualProgramming</PackageProjectUrl>
<PackageTags>contextual;contextual programming;behaviors;behavior;operations;operation;contexts;context;compositions;composition;dynamic;framework</PackageTags>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
</PropertyGroup>
<PropertyGroup Condition="'$(IsWindows)'=='true'">
<DefineConstants>Windows</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(IsOSX)'=='true'">
<DefineConstants>OSX</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(IsLinux)'=='true'">
<DefineConstants>Linux</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Concepts\**" />
<Compile Remove="Showcases\**" />
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Concepts\**" />
<EmbeddedResource Remove="Showcases\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Concepts\**" />
<None Remove="Showcases\**" />
<None Remove="Tests\**" />
</ItemGroup>
<ItemGroup>
<None Update="CHANGELOG.md">
<PackagePath>\</PackagePath>
<Pack>True</Pack>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>