This repository was archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemenim.Scripting.csproj
More file actions
49 lines (42 loc) · 1.92 KB
/
Memenim.Scripting.csproj
File metadata and controls
49 lines (42 loc) · 1.92 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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<UseWPF>true</UseWPF>
<Configurations>Debug;Release;Release Nuget</Configurations>
<RootNamespace>Memenim.Scripting</RootNamespace>
<AssemblyName>Memenim.Scripting</AssemblyName>
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<FileVersion>0.5.0.0</FileVersion>
<PackageId>Memenim.Scripting</PackageId>
<Product>Memenim.Scripting</Product>
<Version>0.5.0</Version>
<Description>Library for interaction with MEMENIM script system</Description>
<PackageTags>dotnetcore, netstandard, netcore, library</PackageTags>
<Authors>Dmitry Ponomarev</Authors>
<Company>MEMENIM</Company>
<Copyright>Copyright (c) MEMENIM, 2021</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/MEMENIM-Project/MEMENIM-Scripting</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/MEMENIM-Project/MEMENIM-Scripting</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);CS0067;SS003;SS004;U2U1009</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Nuget|AnyCPU'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<Target Name="PostPack" AfterTargets="Pack" Condition="'$(Configuration)|$(Platform)'=='Release Nuget|AnyCPU'">
<Exec Command=""CopyPackage.exe" "..\..\_packages" "$(MSBuildProjectFullPath)" "$(Configuration)"" WorkingDirectory="_tools\CopyPackage" />
</Target>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="RIS" Version="3.14.8" />
<PackageReference Include="RIS.Settings" Version="1.4.2" />
</ItemGroup>
</Project>