-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWSCT.Wrapper.MacOSX.csproj
More file actions
27 lines (27 loc) · 1.11 KB
/
WSCT.Wrapper.MacOSX.csproj
File metadata and controls
27 lines (27 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net6.0;net9.0</TargetFrameworks>
<Version>1.5.0</Version>
<Copyright>Copyright © ENSICAEN / GREYC 2014</Copyright>
<Product>WSCT</Product>
<Company>ENSICAEN</Company>
<Authors>Sylvain Vernois</Authors>
<PackageId>WSCT.Wrapper.MacOSX</PackageId>
<RepositoryUrl>https://github.com/wsct/WSCT-Core</RepositoryUrl>
<PackageProjectUrl>https://github.com/wsct/WSCT-Core</PackageProjectUrl>
<Description>WSCT Wrapper for MacOSX.</Description>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>WSCT.Core updated</PackageReleaseNotes>
<PackageOutputPath>../nuget/$(Configuration)</PackageOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\WSCT\WSCT.csproj" />
</ItemGroup>
</Project>