-
Notifications
You must be signed in to change notification settings - Fork 0
/
VIEApps.Services.Base.Libs.csproj
31 lines (27 loc) · 1.71 KB
/
VIEApps.Services.Base.Libs.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;netstandard2.0</TargetFrameworks>
<RootNamespace>net.vieapps.Services</RootNamespace>
<AssemblyName>VIEApps.Services.Base.Libs</AssemblyName>
<AssemblyTitle>VIEApps NGX Service Base Libraries</AssemblyTitle>
<Authors>VIEApps.net</Authors>
<Company>VIEApps.net</Company>
<Product>VIEApps NGX</Product>
<Copyright>© $([System.DateTime]::Now.Year) VIEApps.net</Copyright>
<AssemblyVersion>10.9$(ReleaseVersion)</AssemblyVersion>
<FileVersion>10.9$(ReleaseVersion)</FileVersion>
<InformationalVersion>10.9.$([System.DateTime]::Now.Year).$([System.DateTime]::Now.Month).$([System.DateTime]::Now.Day)@$(TargetFramework)#$(ReleaseRevision)</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<None Remove=".DS_Store" />
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="README.md" />
<None Remove="LICENSE.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-x64" Version="3.26.0" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64" Version="3.26.0" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64" Version="3.26.0" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'" />
</ItemGroup>
</Project>