-
Notifications
You must be signed in to change notification settings - Fork 0
/
Core.csproj
36 lines (28 loc) · 1.55 KB
/
Core.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.41.0</Version>
<Authors>Juan Delgado (@JuDelCo)</Authors>
<Title>JuCore</Title>
<AssemblyName>JuCore</AssemblyName>
<Description>Service locator (IoC Container), object factory, util classes and lots of services to ease the development of C# applications and games</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/JuDelCo/Core</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<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>
<InvariantGlobalization>true</InvariantGlobalization>
</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>