-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCore.csproj
More file actions
61 lines (51 loc) · 2.89 KB
/
Core.csproj
File metadata and controls
61 lines (51 loc) · 2.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>JuCore</Title>
<Version>1.52.0</Version>
<AssemblyName>JuCore</AssemblyName>
<Authors>Juan Delgado (@JuDelCo)</Authors>
<Copyright>Copyright (c) 2016-2025 Juan Delgado (@JuDelCo)</Copyright>
<Description>Service locator (IoC Container), object factory, util classes and lots of services to ease the development of C# applications and games</Description>
<PackageId>JuDelCo.Lib.Core</PackageId>
<PackageTags>Core;JuCore;IOC;Container;ServiceLocator;DependencyInjection;Utilities;Service;Factory;Event;Eventbus;Log;Promise;Timer;Coroutine;Task;Cache;Data;Sync;Async;Pool;FSM;Time;Color;Util</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/JuDelCo/Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/JuDelCo/Core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="/"/>
<None Include="CHANGELOG.md" Pack="true" PackagePath="/"/>
<None Include="LICENSE.md" Pack="true" PackagePath="/"/>
<None Include="build/JuDelCo.Lib.Core.targets" Pack="true" PackagePath="build" />
<Content Include="**/*.cs" Exclude="bin/**;obj/**" Pack="true" PackagePath="contentFiles/cs/any/" />
</ItemGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<PropertyGroup>
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
<IsGodotBuild Condition="$([System.Text.RegularExpressions.Regex]::IsMatch($(DefineConstants), 'GODOT'))">true</IsGodotBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(IsGodotBuild)'!='true'">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(IsGodotBuild)'=='true'">
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(IsLinux)'=='true'">
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="'$(IsOSX)'=='true'">
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="'$(IsWindows)'=='true'">
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
</Project>