Auto status change to "Under Review"
@@ -1,152 +1,155 | |||
|
1 | 1 | using System; |
|
2 | 2 | using System.Collections.Generic; |
|
3 | 3 | using System.Diagnostics; |
|
4 | using System.Dynamic; | |
|
4 | 5 | using System.Linq; |
|
5 | 6 | using Implab.Components; |
|
6 | 7 | using Implab.Diagnostics; |
|
7 | 8 | using Implab.ServiceHost.Unity; |
|
8 | 9 | using Implab.Xml; |
|
9 | 10 | using Unity; |
|
10 | 11 | using Unity.Injection; |
|
11 | 12 | using Unity.Registration; |
|
12 | 13 | |
|
13 | 14 | namespace Implab.Playground { |
|
14 | 15 | |
|
15 | 16 | public class Foo { |
|
16 | 17 | |
|
17 | 18 | public class Bar { |
|
18 | 19 | |
|
19 | 20 | } |
|
20 | 21 | |
|
21 | 22 | public string Name { get; set; } |
|
22 | 23 | |
|
23 | 24 | public int IntValue { get; set; } |
|
24 | 25 | |
|
25 | 26 | public string StringValue { get; set; } |
|
26 | 27 | |
|
27 | 28 | public void AddRange(Foo[] items) { |
|
28 | 29 | Console.WriteLine($"AddRange: Foo[]"); |
|
29 | 30 | } |
|
30 | 31 | |
|
31 | 32 | } |
|
32 | 33 | |
|
33 | 34 | public class FooFactory : IFactory<Foo>, IFactory<Foo.Bar> { |
|
34 | 35 | |
|
35 | 36 | public bool UseSsl { get; set; } |
|
36 | 37 | |
|
37 | 38 | public string Connection { get; set; } |
|
38 | 39 | |
|
39 | 40 | public Foo Create() { |
|
40 | 41 | return new Foo() { |
|
41 | 42 | Name = "AutoFac" |
|
42 | 43 | }; |
|
43 | 44 | } |
|
44 | 45 | |
|
45 | 46 | Foo.Bar IFactory<Foo.Bar>.Create() { |
|
46 | 47 | return new Foo.Bar(); |
|
47 | 48 | } |
|
48 | 49 | } |
|
49 | 50 | |
|
50 | 51 | public interface IContainer<T> { |
|
51 | 52 | T Instance { get; set; } |
|
52 | 53 | } |
|
53 | 54 | |
|
54 | 55 | public class Container<T> : IContainer<T> { |
|
55 | 56 | public class Bar { |
|
56 | 57 | |
|
57 | 58 | } |
|
58 | 59 | |
|
59 | 60 | public class Bar<T2> { |
|
60 | 61 | public class Baz { |
|
61 | 62 | |
|
62 | 63 | } |
|
63 | 64 | |
|
64 | 65 | } |
|
65 | 66 | |
|
66 | 67 | public Container() { |
|
67 | 68 | |
|
68 | 69 | } |
|
69 | 70 | |
|
70 | 71 | public Container(T instance) { |
|
71 | 72 | Instance = instance; |
|
72 | 73 | } |
|
73 | 74 | |
|
74 | 75 | public T Instance { get; set; } |
|
75 | 76 | |
|
76 | 77 | public void SetInstance(T value) { |
|
77 | 78 | Instance = value; |
|
78 | 79 | } |
|
79 | 80 | |
|
80 | 81 | public void AddRange(List<T> items) { |
|
81 | 82 | Console.WriteLine($"AddRange: {typeof(List<T>)}"); |
|
82 | 83 | } |
|
83 | 84 | |
|
84 | 85 | public void AddRange(T[] items) { |
|
85 | 86 | Console.WriteLine($"AddRange: T[] ofType {typeof(T[])}"); |
|
86 | 87 | } |
|
87 | 88 | } |
|
88 | 89 | |
|
89 | 90 | public class Program { |
|
90 | 91 | |
|
91 | 92 | static void Main(string[] args) { |
|
92 | 93 | var u1 = new Uri("/some/one"); |
|
93 | 94 | |
|
94 | Console.WriteLine($"{u1.IsAbsoluteUri}: {u1}"); | |
|
95 | dynamic obj = new ExpandoObject(); | |
|
96 | ||
|
97 | obj.Name = "Dynamo"; | |
|
95 | 98 | |
|
96 | var u2 = new Uri(u1, "../../two"); | |
|
99 | obj.Hello = new Func<string>(() => { return "Hello"; }); | |
|
97 | 100 | |
|
98 |
Console.WriteLine($"{ |
|
|
101 | Console.WriteLine($"{obj.Hello()}"); | |
|
99 | 102 | |
|
100 | 103 | } |
|
101 | 104 | |
|
102 | 105 | static void Main2(string[] args) { |
|
103 | 106 | var listener = new SimpleTraceListener(Console.Out); |
|
104 | 107 | var source = Trace<TypeResolver>.TraceSource; |
|
105 | 108 | source.Switch.Level = SourceLevels.All; |
|
106 | 109 | source.Listeners.Add(listener); |
|
107 | 110 | |
|
108 | 111 | var stopwatch = new Stopwatch(); |
|
109 | 112 | stopwatch.Start(); |
|
110 | 113 | |
|
111 | 114 | var container = new UnityContainer(); |
|
112 | 115 | |
|
113 | 116 | Console.WriteLine($"Created: {stopwatch.ElapsedMilliseconds}"); |
|
114 | 117 | stopwatch.Restart(); |
|
115 | 118 | |
|
116 | 119 | container.LoadXmlConfiguration("data/sample.xml"); |
|
117 | 120 | |
|
118 | 121 | Console.WriteLine($"Loaded: {stopwatch.ElapsedMilliseconds}"); |
|
119 | 122 | |
|
120 | 123 | stopwatch.Restart(); |
|
121 | 124 | var instace1 = container.Resolve<IContainer<string>>(); |
|
122 | 125 | Console.WriteLine($"Resolved1: {stopwatch.ElapsedMilliseconds}"); |
|
123 | 126 | |
|
124 | 127 | stopwatch.Restart(); |
|
125 | 128 | var instace2 = container.Resolve<IContainer<Foo>>(); |
|
126 | 129 | Console.WriteLine($"Resolved2: {stopwatch.ElapsedMilliseconds}"); |
|
127 | 130 | |
|
128 | 131 | DisplayContainerRegistrations(container); |
|
129 | 132 | } |
|
130 | 133 | |
|
131 | 134 | static void DisplayContainerRegistrations(IUnityContainer theContainer) { |
|
132 | 135 | string regName, regType, mapTo, lifetime; |
|
133 | 136 | Console.WriteLine("Container has {0} Registrations:", |
|
134 | 137 | theContainer.Registrations.Count()); |
|
135 | 138 | foreach (ContainerRegistration item in theContainer.Registrations) { |
|
136 | 139 | regType = item.RegisteredType.FullName; |
|
137 | 140 | mapTo = item.MappedToType.FullName; |
|
138 | 141 | regName = item.Name ?? "[default]"; |
|
139 | 142 | lifetime = item.LifetimeManager.LifetimeType.Name; |
|
140 | 143 | if (mapTo != regType) { |
|
141 | 144 | mapTo = " -> " + mapTo; |
|
142 | 145 | } else { |
|
143 | 146 | mapTo = string.Empty; |
|
144 | 147 | } |
|
145 | 148 | lifetime = lifetime.Substring(0, lifetime.Length - "LifetimeManager".Length); |
|
146 | 149 | Console.WriteLine("+ {0}{1} '{2}' {3}", regType, mapTo, regName, lifetime); |
|
147 | 150 | } |
|
148 | 151 | } |
|
149 | 152 | |
|
150 | 153 | |
|
151 | 154 | } |
|
152 | 155 | } |
|
1 | NO CONTENT: file renamed from Implab.ServiceHost/docs/XmlConfiguration.md to Implab.ServiceHost/docs/XmlConfiguration.ru.md |
@@ -1,94 +1,107 | |||
|
1 | 1 | using System; |
|
2 | 2 | using System.Threading; |
|
3 | 3 | using System.Threading.Tasks; |
|
4 | 4 | |
|
5 | 5 | namespace Implab.Components { |
|
6 | 6 | public abstract class PollingComponent : RunnableComponent { |
|
7 | 7 | |
|
8 | 8 | readonly Timer m_timer; |
|
9 | 9 | |
|
10 | 10 | readonly CancellationTokenSource m_cancellation = new CancellationTokenSource(); |
|
11 | 11 | |
|
12 | 12 | Task m_pending; |
|
13 | 13 | Task m_poll; |
|
14 | 14 | |
|
15 | 15 | /// <summary> |
|
16 | 16 | /// Poll interval in milliseconds. |
|
17 | 17 | /// </summary> |
|
18 | 18 | /// <returns></returns> |
|
19 | 19 | public int Interval { get; set; } |
|
20 | 20 | |
|
21 | 21 | /// <summary> |
|
22 | 22 | /// Delay to the first poll after start in milliseconds |
|
23 | 23 | /// </summary> |
|
24 | 24 | /// <returns></returns> |
|
25 | 25 | public int Delay { get; set; } |
|
26 | 26 | |
|
27 | 27 | /// <summary> |
|
28 | 28 | /// Indicates how to handle unhandled exceptions in <see cref="Poll()"/> method. |
|
29 | 29 | /// </summary> |
|
30 | 30 | /// <returns></returns> |
|
31 | 31 | public bool FailOnError { get; set; } |
|
32 | 32 | |
|
33 | 33 | /// <summary> |
|
34 | 34 | /// Event for the unhandled exceptions in <see cref="Poll()"/> method. |
|
35 | 35 | /// </summary> |
|
36 | 36 | public event EventHandler<UnhandledExceptionEventArgs> UnhandledException; |
|
37 | 37 | |
|
38 | 38 | protected PollingComponent(bool initialized) : base(initialized) { |
|
39 | 39 | m_timer = new Timer(OnTimer); |
|
40 | 40 | } |
|
41 | 41 | |
|
42 | 42 | protected override void RunInternal() { |
|
43 | 43 | ScheduleNextPoll(Delay); |
|
44 | 44 | } |
|
45 | 45 | |
|
46 | 46 | |
|
47 | 47 | protected override async Task StopInternalAsync(CancellationToken ct) { |
|
48 | 48 | // component in Stopping state, no new polls will be scheduled |
|
49 | ||
|
50 | // we do not need additional synchronization logic here | |
|
51 | // since RunnableComponent already done this | |
|
52 | ||
|
49 | 53 | m_cancellation.Cancel(); |
|
50 | 54 | try { |
|
51 | 55 | // await for pending poll |
|
52 | 56 | if (m_poll != null) |
|
53 | 57 | await m_poll; |
|
54 | 58 | } catch (OperationCanceledException) { |
|
55 | 59 | // OK |
|
56 | 60 | } |
|
57 | 61 | } |
|
58 | 62 | |
|
59 | 63 | protected abstract Task Poll(CancellationToken ct); |
|
60 | 64 | |
|
61 | 65 | void ScheduleNextPoll(int timeout) { |
|
66 | // access and modification of the component state | |
|
67 | // in custom methods requires a synchronization | |
|
62 | 68 | lock (SynchronizationObject) { |
|
69 | ||
|
63 | 70 | if (State == ExecutionState.Running) { |
|
64 | 71 | m_pending = Safe.CreateTask(m_cancellation.Token); |
|
65 | 72 | m_poll = m_pending.Then(() => Poll(m_cancellation.Token)); |
|
66 | 73 | m_timer.Change(timeout, Timeout.Infinite); |
|
67 | 74 | } |
|
68 | 75 | } |
|
69 | 76 | } |
|
70 | 77 | |
|
71 | 78 | async void OnTimer(object state) { |
|
72 | 79 | try { |
|
80 | // changes to m_pending and m_poll are done | |
|
81 | // only in ScheduleNextPoll method, hence we | |
|
82 | // can safely use them here | |
|
73 | 83 | m_pending.Start(); |
|
74 | 84 | await m_poll; |
|
85 | ||
|
86 | // schedule next poll | |
|
75 | 87 | ScheduleNextPoll(Interval); |
|
76 | 88 | } catch (Exception e) { |
|
89 | // hanle error | |
|
77 | 90 | UnhandledException.DispatchEvent(this, new UnhandledExceptionEventArgs(e, false)); |
|
78 | 91 | |
|
79 | 92 | if (FailOnError) |
|
80 | 93 | Fail(e); |
|
81 | 94 | else |
|
82 | 95 | ScheduleNextPoll(Interval); |
|
83 | 96 | } |
|
84 | 97 | |
|
85 | 98 | } |
|
86 | 99 | |
|
87 | 100 | protected override void Dispose(bool disposing) { |
|
88 | 101 | if (disposing) |
|
89 | 102 | Safe.Dispose(m_timer, m_cancellation); |
|
90 | 103 | base.Dispose(disposing); |
|
91 | 104 | } |
|
92 | 105 | |
|
93 | 106 | } |
|
94 | 107 | } No newline at end of file |
This diff has been collapsed as it changes many lines, (6717 lines changed) Show them Hide them | |||
@@ -1,6717 +0,0 | |||
|
1 | Microsoft (R) Build Engine version 15.4.0.0 ( Wed Nov 29 14:47:19 UTC 2017) for Mono | |
|
2 | Copyright (C) Microsoft Corporation. All rights reserved. | |
|
3 | ||
|
4 | /usr/lib/mono/msbuild/15.0/bin/MSBuild.dll /p:TargetFrameworks=netstandard2.0 /t:restore /v:diag Implab/Implab.csproj | |
|
5 | Build started 4/18/2018 4:18:29 PM. | |
|
6 | Environment at start of build: | |
|
7 | CSHEDIT = emacs | |
|
8 | XDG_CONFIG_DIRS = /etc/xdg | |
|
9 | CPU = x86_64 | |
|
10 | JAVA_HOME = /usr/lib64/jvm/java | |
|
11 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
12 | LANG = en_US.UTF-8 | |
|
13 | XNLSPATH = /usr/share/X11/nls | |
|
14 | HOSTTYPE = x86_64 | |
|
15 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
16 | OSTYPE = linux | |
|
17 | XDG_MENU_PREFIX = gnome- | |
|
18 | JDK_HOME = /usr/lib64/jvm/java | |
|
19 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
20 | AUDIODRIVER = pulseaudio | |
|
21 | MAIL = /var/spool/mail/sergey | |
|
22 | QEMU_AUDIO_DRV = pa | |
|
23 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
24 | TERM = xterm | |
|
25 | GPG_TTY = /dev/pts/1 | |
|
26 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
27 | XCURSOR_THEME = DMZ | |
|
28 | LESS = -M -I -R | |
|
29 | XDG_CURRENT_DESKTOP = GNOME | |
|
30 | DESKTOP_SESSION = gnome | |
|
31 | XDG_SESSION_TYPE = wayland | |
|
32 | XDG_SESSION_ID = 1 | |
|
33 | SDL_AUDIODRIVER = pulse | |
|
34 | XDG_VTNR = 2 | |
|
35 | PYTHONSTARTUP = /etc/pythonstart | |
|
36 | USER = sergey | |
|
37 | HOME = /home/sergey | |
|
38 | LESSKEY = /etc/lesskey.bin | |
|
39 | G_BROKEN_FILENAMES = 1 | |
|
40 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
41 | XAUTHLOCALHOSTNAME = chamber | |
|
42 | MACHTYPE = x86_64-suse-linux | |
|
43 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
44 | CHROME_DESKTOP = Code.desktop | |
|
45 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
46 | LESSOPEN = lessopen.sh %s | |
|
47 | DISPLAY = :0 | |
|
48 | VSCODE_PID = 32392 | |
|
49 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
50 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
51 | GJS_DEBUG_OUTPUT = stderr | |
|
52 | LOGNAME = sergey | |
|
53 | HISTSIZE = 1000 | |
|
54 | HOST = chamber | |
|
55 | SHLVL = 3 | |
|
56 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
57 | FROM_HEADER = | |
|
58 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
59 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
60 | NNTPSERVER = news | |
|
61 | MINICOM = -c on | |
|
62 | PAGER = less | |
|
63 | TERM_PROGRAM = vscode | |
|
64 | SHELL = /bin/bash | |
|
65 | USERNAME = sergey | |
|
66 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
67 | MANPATH = /usr/local/man:/usr/share/man | |
|
68 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
69 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
70 | LESSCLOSE = lessclose.sh %s %s | |
|
71 | MORE = -sl | |
|
72 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
73 | _ = /usr/bin/msbuild | |
|
74 | SDK_HOME = /usr/lib64/jvm/java | |
|
75 | LS_OPTIONS = -N --color=tty -T 0 | |
|
76 | XMODIFIERS = @im=ibus | |
|
77 | BASH_FUNC_mc%% = () { . /usr/share/mc/mc-wrapper.sh | |
|
78 | } | |
|
79 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
80 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
81 | GDMSESSION = gnome | |
|
82 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
83 | WINDOWMANAGER = /usr/bin/gnome | |
|
84 | XDG_SEAT = seat0 | |
|
85 | LESS_ADVANCED_PREPROCESSOR = no | |
|
86 | MONO_GC_PARAMS = nursery-size=64m, | |
|
87 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
88 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
89 | XDG_SESSION_DESKTOP = gnome | |
|
90 | QT_IM_MODULE = ibus | |
|
91 | HOSTNAME = chamber | |
|
92 | PROFILEREAD = true | |
|
93 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
94 | LC_CTYPE = ru_RU.UTF-8 | |
|
95 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
96 | PWD = /home/sergey/projects/ImplabNet | |
|
97 | WAYLAND_DISPLAY = wayland-0 | |
|
98 | COLORTERM = 1 | |
|
99 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
100 | ||
|
101 | Property reassignment: $(MSBuildProjectExtensionsPath)="/home/sergey/projects/ImplabNet/Implab/obj/" (previous value: "obj\") at /usr/lib/mono/xbuild/15.0/Microsoft.Common.props (58,5) | |
|
102 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props (13,5) | |
|
103 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props (15,5) | |
|
104 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props (21,5) | |
|
105 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props (17,9) | |
|
106 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props (15,5) | |
|
107 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets (15,5) | |
|
108 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets (15,5) | |
|
109 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets (27,5) | |
|
110 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets") at /usr/lib/mono/msbuild/15.0/bin/NuGet.targets (45,5) | |
|
111 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets (4,5) | |
|
112 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets (15,5) | |
|
113 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets (17,5) | |
|
114 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets (17,5) | |
|
115 | Property reassignment: $(GenerateNuspecDependsOn)="Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; " (previous value: "_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets (49,5) | |
|
116 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" on node 1 (restore target(s)). | |
|
117 | Initial Properties: | |
|
118 | _ = /usr/bin/msbuild | |
|
119 | _DirectoryBuildPropsBasePath = | |
|
120 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
121 | _DirectoryBuildTargetsBasePath = | |
|
122 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
123 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
124 | RestoreUseCustomAfterTargets=; | |
|
125 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
126 | BuildProjectReferences=false; | |
|
127 | ExcludeRestorePackageImports=true; | |
|
128 | ||
|
129 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
130 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
131 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
132 | AllowUnsafeBlocks = false | |
|
133 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
134 | AssemblyName = Implab | |
|
135 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
136 | AssemblyTitle = Implab | |
|
137 | AUDIODRIVER = pulseaudio | |
|
138 | Authors = Sergey Smirnov | |
|
139 | BaseIntermediateOutputPath = obj\ | |
|
140 | BaseOutputPath = bin\ | |
|
141 | BuildInParallel = true | |
|
142 | BuildOutputTargetFolder = lib | |
|
143 | CheckForOverflowUnderflow = false | |
|
144 | CHROME_DESKTOP = Code.desktop | |
|
145 | COLORTERM = 1 | |
|
146 | Company = Sergey Smirnov | |
|
147 | Configuration = Debug | |
|
148 | Configurations = Debug;Release | |
|
149 | ContentTargetFolders = content;contentFiles | |
|
150 | Copyright = 2012-2018 Sergey Smirnov | |
|
151 | CPU = x86_64 | |
|
152 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
153 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CrossTargeting.targets | |
|
154 | CSHEDIT = emacs | |
|
155 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
156 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
157 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
158 | DebugSymbols = true | |
|
159 | DebugType = portable | |
|
160 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
161 | DefineConstants = TRACE | |
|
162 | DelaySign = false | |
|
163 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
164 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
165 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
166 | ||
|
167 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
168 | DESKTOP_SESSION = gnome | |
|
169 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
170 | Deterministic = true | |
|
171 | DisableHandlePackageFileConflicts = true | |
|
172 | DISPLAY = :0 | |
|
173 | ErrorReport = prompt | |
|
174 | FileAlignment = 512 | |
|
175 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
176 | FROM_HEADER = | |
|
177 | G_BROKEN_FILENAMES = 1 | |
|
178 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
179 | GDMSESSION = gnome | |
|
180 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
181 | GeneratePackageOnBuild = false | |
|
182 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
183 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
184 | GJS_DEBUG_OUTPUT = stderr | |
|
185 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
186 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
187 | GPG_TTY = /dev/pts/1 | |
|
188 | HideWarningsAndErrors = false | |
|
189 | HISTSIZE = 1000 | |
|
190 | HOME = /home/sergey | |
|
191 | HOST = chamber | |
|
192 | HOSTNAME = chamber | |
|
193 | HOSTTYPE = x86_64 | |
|
194 | ImportByWildcardAfterMicrosoftCommonCrossTargetingTargets = true | |
|
195 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
196 | ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets = true | |
|
197 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
198 | ImportDirectoryBuildProps = true | |
|
199 | ImportDirectoryBuildTargets = true | |
|
200 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
201 | ImportProjectExtensionProps = true | |
|
202 | ImportProjectExtensionTargets = true | |
|
203 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
204 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
205 | IncludeBuildOutput = true | |
|
206 | IncludeContentInPack = true | |
|
207 | IntermediateOutputPath = obj\Debug\ | |
|
208 | IsCrossTargetingBuild = true | |
|
209 | IsPackable = true | |
|
210 | IsRestoreTargetsFileLoaded = true | |
|
211 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
212 | JAVA_HOME = /usr/lib64/jvm/java | |
|
213 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
214 | JDK_HOME = /usr/lib64/jvm/java | |
|
215 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
216 | LANG = en_US.UTF-8 | |
|
217 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
218 | LC_CTYPE = ru_RU.UTF-8 | |
|
219 | LESS = -M -I -R | |
|
220 | LESS_ADVANCED_PREPROCESSOR = no | |
|
221 | LESSCLOSE = lessclose.sh %s %s | |
|
222 | LESSKEY = /etc/lesskey.bin | |
|
223 | LESSOPEN = lessopen.sh %s | |
|
224 | LocalAppData = /home/sergey/.local/share | |
|
225 | LOGNAME = sergey | |
|
226 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
227 | LS_OPTIONS = -N --color=tty -T 0 | |
|
228 | MACHTYPE = x86_64-suse-linux | |
|
229 | MAIL = /var/spool/mail/sergey | |
|
230 | MANPATH = /usr/local/man:/usr/share/man | |
|
231 | MicrosoftCommonPropsHasBeenImported = true | |
|
232 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
233 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
234 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
235 | MicrosoftNETBuildTasksTFM = net46 | |
|
236 | MINICOM = -c on | |
|
237 | MONO_GC_PARAMS = nursery-size=64m, | |
|
238 | MORE = -sl | |
|
239 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
240 | MSBuildAssemblyVersion = 15.0 | |
|
241 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
242 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
243 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
244 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
245 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
246 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
247 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
248 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
249 | MSBuildNodeCount = 1 | |
|
250 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
251 | MSBuildProjectDefaultTargets = Build | |
|
252 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
253 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
254 | MSBuildProjectExtension = .csproj | |
|
255 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
256 | MSBuildProjectFile = Implab.csproj | |
|
257 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
258 | MSBuildProjectName = Implab | |
|
259 | MSBuildRuntimeType = Mono | |
|
260 | MSBuildRuntimeVersion = 4.0.30319 | |
|
261 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
262 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
263 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
264 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
265 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
266 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
267 | MSBuildToolsVersion = 15.0 | |
|
268 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
269 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
270 | NNTPSERVER = news | |
|
271 | NoLogo = true | |
|
272 | NoWarn = 1701;1702;1705 | |
|
273 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
274 | NuGetPackageFolders = /home/sergey/.nuget/packages/ | |
|
275 | NuGetPackageRoot = /home/sergey/.nuget/packages/ | |
|
276 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
277 | NuGetProjectStyle = PackageReference | |
|
278 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
279 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
280 | NuGetToolVersion = 4.5.0 | |
|
281 | NuspecOutputPath = obj\Debug\ | |
|
282 | Optimize = false | |
|
283 | OS = Unix | |
|
284 | OSTYPE = linux | |
|
285 | OutputPath = bin\Debug\ | |
|
286 | OutputType = Library | |
|
287 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
288 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
289 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
290 | ||
|
291 | PackageId = Implab | |
|
292 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
293 | PackageOutputPath = bin\Debug\ | |
|
294 | PackageProjectUrl = https://implab.org | |
|
295 | PackageRequireLicenseAcceptance = false | |
|
296 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
297 | PackageVersion = 3.0.10 | |
|
298 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
299 | PAGER = less | |
|
300 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
301 | Platform = AnyCPU | |
|
302 | PlatformName = AnyCPU | |
|
303 | Platforms = AnyCPU | |
|
304 | Prefer32Bit = false | |
|
305 | Product = Implab | |
|
306 | PROFILEREAD = true | |
|
307 | ProjectAssetsFile = /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
308 | PWD = /home/sergey/projects/ImplabNet | |
|
309 | PYTHONSTARTUP = /etc/pythonstart | |
|
310 | QEMU_AUDIO_DRV = pa | |
|
311 | QT_IM_MODULE = ibus | |
|
312 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
313 | RepositoryType = mercurial | |
|
314 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
315 | ResolveNuGetPackages = false | |
|
316 | RestoreContinueOnError = WarnAndContinue | |
|
317 | RestoreProjectStyle = PackageReference | |
|
318 | RestoreRecursive = true | |
|
319 | RestoreSuccess = True | |
|
320 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
321 | RestoreTool = NuGet | |
|
322 | RootNamespace = Implab | |
|
323 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
324 | SDK_HOME = /usr/lib64/jvm/java | |
|
325 | SDK35ToolsPath = / | |
|
326 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
327 | SDL_AUDIODRIVER = pulse | |
|
328 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
329 | SHELL = /bin/bash | |
|
330 | SHLVL = 3 | |
|
331 | SignAssembly = false | |
|
332 | SkipImportNuGetBuildTargets = true | |
|
333 | SkipImportNuGetProps = true | |
|
334 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
335 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
336 | TargetFrameworks = netstandard2.0 | |
|
337 | TERM = xterm | |
|
338 | TERM_PROGRAM = vscode | |
|
339 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
340 | Title = Implab library | |
|
341 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
342 | TreatWarningsAsErrors = false | |
|
343 | USER = sergey | |
|
344 | USERNAME = sergey | |
|
345 | UsingMicrosoftNETSdk = true | |
|
346 | ValidateRuntimeIdentifierCompatibility = false | |
|
347 | Version = 3.0.10 | |
|
348 | VisualStudioVersion = 15.0 | |
|
349 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
350 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
351 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
352 | VSCODE_PID = 32392 | |
|
353 | WarningLevel = 4 | |
|
354 | WarningsAsErrors = NU1605 | |
|
355 | WAYLAND_DISPLAY = wayland-0 | |
|
356 | WINDOWMANAGER = /usr/bin/gnome | |
|
357 | WMSJSProject = WJProject | |
|
358 | WMSJSProjectDirectory = JavaScript | |
|
359 | XAUTHLOCALHOSTNAME = chamber | |
|
360 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
361 | XCURSOR_THEME = DMZ | |
|
362 | XDG_CONFIG_DIRS = /etc/xdg | |
|
363 | XDG_CURRENT_DESKTOP = GNOME | |
|
364 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
365 | XDG_MENU_PREFIX = gnome- | |
|
366 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
367 | XDG_SEAT = seat0 | |
|
368 | XDG_SESSION_DESKTOP = gnome | |
|
369 | XDG_SESSION_ID = 1 | |
|
370 | XDG_SESSION_TYPE = wayland | |
|
371 | XDG_VTNR = 2 | |
|
372 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
373 | XMODIFIERS = @im=ibus | |
|
374 | XNLSPATH = /usr/share/X11/nls | |
|
375 | ||
|
376 | Initial Items: | |
|
377 | EmbeddedResource | |
|
378 | Xml/json.xsl | |
|
379 | ProjectCapability | |
|
380 | Pack | |
|
381 | SupportedTargetFramework | |
|
382 | .NETCoreApp,Version=v1.0 | |
|
383 | DisplayName = .NET Core 1.0 | |
|
384 | .NETCoreApp,Version=v1.1 | |
|
385 | DisplayName = .NET Core 1.1 | |
|
386 | .NETCoreApp,Version=v2.0 | |
|
387 | DisplayName = .NET Core 2.0 | |
|
388 | .NETStandard,Version=v1.0 | |
|
389 | DisplayName = .NET Standard 1.0 | |
|
390 | .NETStandard,Version=v1.1 | |
|
391 | DisplayName = .NET Standard 1.1 | |
|
392 | .NETStandard,Version=v1.2 | |
|
393 | DisplayName = .NET Standard 1.2 | |
|
394 | .NETStandard,Version=v1.3 | |
|
395 | DisplayName = .NET Standard 1.3 | |
|
396 | .NETStandard,Version=v1.4 | |
|
397 | DisplayName = .NET Standard 1.4 | |
|
398 | .NETStandard,Version=v1.5 | |
|
399 | DisplayName = .NET Standard 1.5 | |
|
400 | .NETStandard,Version=v1.6 | |
|
401 | DisplayName = .NET Standard 1.6 | |
|
402 | .NETStandard,Version=v2.0 | |
|
403 | DisplayName = .NET Standard 2.0 | |
|
404 | ||
|
405 | Building with tools version "15.0". | |
|
406 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
407 | Target "_LoadRestoreGraphEntryPoints: (TargetId:2)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_FilterRestoreGraphProjectInputItems" depends on it): | |
|
408 | Added Item(s): RestoreGraphProjectInputItems=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
409 | Task "GetRestoreSolutionProjectsTask" skipped, due to false condition; ( $(MSBuildProjectFullPath.EndsWith('.metaproj')) == 'true' AND @(RestoreGraphProjectInputItems) == '' ) was evaluated as ( False == 'true' AND /home/sergey/projects/ImplabNet/Implab/Implab.csproj == '' ). | |
|
410 | Done building target "_LoadRestoreGraphEntryPoints" in project "Implab.csproj".: (TargetId:2) | |
|
411 | Target "_FilterRestoreGraphProjectInputItems: (TargetId:3)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreGraph" depends on it): | |
|
412 | Set Property: RestoreProjectFilterMode=exclusionlist | |
|
413 | Added Item(s): _FilteredRestoreGraphProjectInputItemsTmp=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
414 | Using "RemoveDuplicates" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". | |
|
415 | Task "RemoveDuplicates" (TaskId:2) | |
|
416 | Task Parameter:Inputs=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:2) | |
|
417 | Output Item(s): FilteredRestoreGraphProjectInputItemsWithoutDuplicates=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:2) | |
|
418 | Done executing task "RemoveDuplicates". (TaskId:2) | |
|
419 | Using "MsBuild" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". | |
|
420 | Task "MsBuild" (TaskId:3) | |
|
421 | Task Parameter:Projects=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:3) | |
|
422 | Task Parameter:Targets=_IsProjectRestoreSupported (TaskId:3) | |
|
423 | Task Parameter: | |
|
424 | Properties= | |
|
425 | RestoreUseCustomAfterTargets= | |
|
426 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
427 | BuildProjectReferences=false | |
|
428 | ExcludeRestorePackageImports=true (TaskId:3) | |
|
429 | Global Properties: (TaskId:3) | |
|
430 | RestoreUseCustomAfterTargets= (TaskId:3) | |
|
431 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:3) | |
|
432 | BuildProjectReferences=false (TaskId:3) | |
|
433 | ExcludeRestorePackageImports=true (TaskId:3) | |
|
434 | Property reassignment: $(MSBuildProjectExtensionsPath)="/home/sergey/projects/ImplabNet/Implab/obj/" (previous value: "obj\") at /usr/lib/mono/xbuild/15.0/Microsoft.Common.props (58,5) | |
|
435 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props (13,5) | |
|
436 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props (15,5) | |
|
437 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props (21,5) | |
|
438 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props (17,9) | |
|
439 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props (15,5) | |
|
440 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets (15,5) | |
|
441 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets (15,5) | |
|
442 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets (27,5) | |
|
443 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets") at /usr/lib/mono/msbuild/15.0/bin/NuGet.targets (45,5) | |
|
444 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets (4,5) | |
|
445 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets (15,5) | |
|
446 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets (17,5) | |
|
447 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets (17,5) | |
|
448 | Property reassignment: $(GenerateNuspecDependsOn)="Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; " (previous value: "_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets (49,5) | |
|
449 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:2) on node 1 (_IsProjectRestoreSupported target(s)). | |
|
450 | Initial Properties: | |
|
451 | _ = /usr/bin/msbuild | |
|
452 | _DirectoryBuildPropsBasePath = | |
|
453 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
454 | _DirectoryBuildTargetsBasePath = | |
|
455 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
456 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
457 | RestoreUseCustomAfterTargets=; | |
|
458 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
459 | BuildProjectReferences=false; | |
|
460 | ExcludeRestorePackageImports=true; | |
|
461 | ||
|
462 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
463 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
464 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
465 | AllowUnsafeBlocks = false | |
|
466 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
467 | AssemblyName = Implab | |
|
468 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
469 | AssemblyTitle = Implab | |
|
470 | AUDIODRIVER = pulseaudio | |
|
471 | Authors = Sergey Smirnov | |
|
472 | BaseIntermediateOutputPath = obj\ | |
|
473 | BaseOutputPath = bin\ | |
|
474 | BuildInParallel = true | |
|
475 | BuildOutputTargetFolder = lib | |
|
476 | BuildProjectReferences = false | |
|
477 | CheckForOverflowUnderflow = false | |
|
478 | CHROME_DESKTOP = Code.desktop | |
|
479 | COLORTERM = 1 | |
|
480 | Company = Sergey Smirnov | |
|
481 | Configuration = Debug | |
|
482 | Configurations = Debug;Release | |
|
483 | ContentTargetFolders = content;contentFiles | |
|
484 | Copyright = 2012-2018 Sergey Smirnov | |
|
485 | CPU = x86_64 | |
|
486 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
487 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CrossTargeting.targets | |
|
488 | CSHEDIT = emacs | |
|
489 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
490 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
491 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
492 | DebugSymbols = true | |
|
493 | DebugType = portable | |
|
494 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
495 | DefineConstants = TRACE | |
|
496 | DelaySign = false | |
|
497 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
498 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
499 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
500 | ||
|
501 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
502 | DESKTOP_SESSION = gnome | |
|
503 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
504 | Deterministic = true | |
|
505 | DisableHandlePackageFileConflicts = true | |
|
506 | DISPLAY = :0 | |
|
507 | ErrorReport = prompt | |
|
508 | ExcludeRestorePackageImports = true | |
|
509 | FileAlignment = 512 | |
|
510 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
511 | FROM_HEADER = | |
|
512 | G_BROKEN_FILENAMES = 1 | |
|
513 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
514 | GDMSESSION = gnome | |
|
515 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
516 | GeneratePackageOnBuild = false | |
|
517 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
518 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
519 | GJS_DEBUG_OUTPUT = stderr | |
|
520 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
521 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
522 | GPG_TTY = /dev/pts/1 | |
|
523 | HideWarningsAndErrors = false | |
|
524 | HISTSIZE = 1000 | |
|
525 | HOME = /home/sergey | |
|
526 | HOST = chamber | |
|
527 | HOSTNAME = chamber | |
|
528 | HOSTTYPE = x86_64 | |
|
529 | ImportByWildcardAfterMicrosoftCommonCrossTargetingTargets = true | |
|
530 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
531 | ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets = true | |
|
532 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
533 | ImportDirectoryBuildProps = true | |
|
534 | ImportDirectoryBuildTargets = true | |
|
535 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
536 | ImportProjectExtensionProps = true | |
|
537 | ImportProjectExtensionTargets = true | |
|
538 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
539 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
540 | IncludeBuildOutput = true | |
|
541 | IncludeContentInPack = true | |
|
542 | IntermediateOutputPath = obj\Debug\ | |
|
543 | IsCrossTargetingBuild = true | |
|
544 | IsPackable = true | |
|
545 | IsRestoreTargetsFileLoaded = true | |
|
546 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
547 | JAVA_HOME = /usr/lib64/jvm/java | |
|
548 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
549 | JDK_HOME = /usr/lib64/jvm/java | |
|
550 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
551 | LANG = en_US.UTF-8 | |
|
552 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
553 | LC_CTYPE = ru_RU.UTF-8 | |
|
554 | LESS = -M -I -R | |
|
555 | LESS_ADVANCED_PREPROCESSOR = no | |
|
556 | LESSCLOSE = lessclose.sh %s %s | |
|
557 | LESSKEY = /etc/lesskey.bin | |
|
558 | LESSOPEN = lessopen.sh %s | |
|
559 | LocalAppData = /home/sergey/.local/share | |
|
560 | LOGNAME = sergey | |
|
561 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
562 | LS_OPTIONS = -N --color=tty -T 0 | |
|
563 | MACHTYPE = x86_64-suse-linux | |
|
564 | MAIL = /var/spool/mail/sergey | |
|
565 | MANPATH = /usr/local/man:/usr/share/man | |
|
566 | MicrosoftCommonPropsHasBeenImported = true | |
|
567 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
568 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
569 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
570 | MicrosoftNETBuildTasksTFM = net46 | |
|
571 | MINICOM = -c on | |
|
572 | MONO_GC_PARAMS = nursery-size=64m, | |
|
573 | MORE = -sl | |
|
574 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
575 | MSBuildAssemblyVersion = 15.0 | |
|
576 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
577 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
578 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
579 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
580 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
581 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
582 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
583 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
584 | MSBuildNodeCount = 1 | |
|
585 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
586 | MSBuildProjectDefaultTargets = Build | |
|
587 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
588 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
589 | MSBuildProjectExtension = .csproj | |
|
590 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
591 | MSBuildProjectFile = Implab.csproj | |
|
592 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
593 | MSBuildProjectName = Implab | |
|
594 | MSBuildRuntimeType = Mono | |
|
595 | MSBuildRuntimeVersion = 4.0.30319 | |
|
596 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
597 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
598 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
599 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
600 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
601 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
602 | MSBuildToolsVersion = 15.0 | |
|
603 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
604 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
605 | NNTPSERVER = news | |
|
606 | NoLogo = true | |
|
607 | NoWarn = 1701;1702;1705 | |
|
608 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
609 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
610 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
611 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
612 | NuspecOutputPath = obj\Debug\ | |
|
613 | Optimize = false | |
|
614 | OS = Unix | |
|
615 | OSTYPE = linux | |
|
616 | OutputPath = bin\Debug\ | |
|
617 | OutputType = Library | |
|
618 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
619 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
620 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
621 | ||
|
622 | PackageId = Implab | |
|
623 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
624 | PackageOutputPath = bin\Debug\ | |
|
625 | PackageProjectUrl = https://implab.org | |
|
626 | PackageRequireLicenseAcceptance = false | |
|
627 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
628 | PackageVersion = 3.0.10 | |
|
629 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
630 | PAGER = less | |
|
631 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
632 | Platform = AnyCPU | |
|
633 | PlatformName = AnyCPU | |
|
634 | Platforms = AnyCPU | |
|
635 | Prefer32Bit = false | |
|
636 | Product = Implab | |
|
637 | PROFILEREAD = true | |
|
638 | PWD = /home/sergey/projects/ImplabNet | |
|
639 | PYTHONSTARTUP = /etc/pythonstart | |
|
640 | QEMU_AUDIO_DRV = pa | |
|
641 | QT_IM_MODULE = ibus | |
|
642 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
643 | RepositoryType = mercurial | |
|
644 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
645 | ResolveNuGetPackages = false | |
|
646 | RestoreContinueOnError = WarnAndContinue | |
|
647 | RestoreProjectStyle = PackageReference | |
|
648 | RestoreRecursive = true | |
|
649 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
650 | RestoreUseCustomAfterTargets = | |
|
651 | RootNamespace = Implab | |
|
652 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
653 | SDK_HOME = /usr/lib64/jvm/java | |
|
654 | SDK35ToolsPath = / | |
|
655 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
656 | SDL_AUDIODRIVER = pulse | |
|
657 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
658 | SHELL = /bin/bash | |
|
659 | SHLVL = 3 | |
|
660 | SignAssembly = false | |
|
661 | SkipImportNuGetBuildTargets = true | |
|
662 | SkipImportNuGetProps = true | |
|
663 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
664 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
665 | TargetFrameworks = netstandard2.0 | |
|
666 | TERM = xterm | |
|
667 | TERM_PROGRAM = vscode | |
|
668 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
669 | Title = Implab library | |
|
670 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
671 | TreatWarningsAsErrors = false | |
|
672 | USER = sergey | |
|
673 | USERNAME = sergey | |
|
674 | UsingMicrosoftNETSdk = true | |
|
675 | ValidateRuntimeIdentifierCompatibility = false | |
|
676 | Version = 3.0.10 | |
|
677 | VisualStudioVersion = 15.0 | |
|
678 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
679 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
680 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
681 | VSCODE_PID = 32392 | |
|
682 | WarningLevel = 4 | |
|
683 | WarningsAsErrors = NU1605 | |
|
684 | WAYLAND_DISPLAY = wayland-0 | |
|
685 | WINDOWMANAGER = /usr/bin/gnome | |
|
686 | WMSJSProject = WJProject | |
|
687 | WMSJSProjectDirectory = JavaScript | |
|
688 | XAUTHLOCALHOSTNAME = chamber | |
|
689 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
690 | XCURSOR_THEME = DMZ | |
|
691 | XDG_CONFIG_DIRS = /etc/xdg | |
|
692 | XDG_CURRENT_DESKTOP = GNOME | |
|
693 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
694 | XDG_MENU_PREFIX = gnome- | |
|
695 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
696 | XDG_SEAT = seat0 | |
|
697 | XDG_SESSION_DESKTOP = gnome | |
|
698 | XDG_SESSION_ID = 1 | |
|
699 | XDG_SESSION_TYPE = wayland | |
|
700 | XDG_VTNR = 2 | |
|
701 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
702 | XMODIFIERS = @im=ibus | |
|
703 | XNLSPATH = /usr/share/X11/nls | |
|
704 | ||
|
705 | Initial Items: | |
|
706 | EmbeddedResource | |
|
707 | Xml/json.xsl | |
|
708 | ProjectCapability | |
|
709 | Pack | |
|
710 | SupportedTargetFramework | |
|
711 | .NETCoreApp,Version=v1.0 | |
|
712 | DisplayName = .NET Core 1.0 | |
|
713 | .NETCoreApp,Version=v1.1 | |
|
714 | DisplayName = .NET Core 1.1 | |
|
715 | .NETCoreApp,Version=v2.0 | |
|
716 | DisplayName = .NET Core 2.0 | |
|
717 | .NETStandard,Version=v1.0 | |
|
718 | DisplayName = .NET Standard 1.0 | |
|
719 | .NETStandard,Version=v1.1 | |
|
720 | DisplayName = .NET Standard 1.1 | |
|
721 | .NETStandard,Version=v1.2 | |
|
722 | DisplayName = .NET Standard 1.2 | |
|
723 | .NETStandard,Version=v1.3 | |
|
724 | DisplayName = .NET Standard 1.3 | |
|
725 | .NETStandard,Version=v1.4 | |
|
726 | DisplayName = .NET Standard 1.4 | |
|
727 | .NETStandard,Version=v1.5 | |
|
728 | DisplayName = .NET Standard 1.5 | |
|
729 | .NETStandard,Version=v1.6 | |
|
730 | DisplayName = .NET Standard 1.6 | |
|
731 | .NETStandard,Version=v2.0 | |
|
732 | DisplayName = .NET Standard 2.0 | |
|
733 | ||
|
734 | Building with tools version "15.0". | |
|
735 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
736 | Target "_IsProjectRestoreSupported: (TargetId:4)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
737 | Added Item(s): _ValidProjectsForRestore=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
738 | Done building target "_IsProjectRestoreSupported" in project "Implab.csproj".: (TargetId:4) | |
|
739 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_IsProjectRestoreSupported target(s)). | |
|
740 | _FilterRestoreGraphProjectInputItems: (TargetId:3) | |
|
741 | Output Item(s): | |
|
742 | FilteredRestoreGraphProjectInputItems= | |
|
743 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
744 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
745 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
746 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:3) | |
|
747 | Done executing task "MsBuild". (TaskId:3) | |
|
748 | Using "WarnForInvalidProjectsTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
749 | Task "WarnForInvalidProjectsTask" (TaskId:4) | |
|
750 | Task Parameter:AllProjects=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:4) | |
|
751 | Task Parameter: | |
|
752 | ValidProjects= | |
|
753 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
754 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
755 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
756 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:4) | |
|
757 | (in) AllProjects '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:4) | |
|
758 | (in) ValidProjects '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:4) | |
|
759 | Done executing task "WarnForInvalidProjectsTask". (TaskId:4) | |
|
760 | Done building target "_FilterRestoreGraphProjectInputItems" in project "Implab.csproj".: (TargetId:3) | |
|
761 | Target "_FilterRestoreGraphProjectInputItems" skipped. Previously built successfully. | |
|
762 | Target "_GetAllRestoreProjectPathItems: (TargetId:5)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreGraph" depends on it): | |
|
763 | Task "MsBuild" (TaskId:5) | |
|
764 | Task Parameter: | |
|
765 | Projects= | |
|
766 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
767 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
768 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
769 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:5) | |
|
770 | Task Parameter:Targets=_GenerateRestoreProjectPathWalk (TaskId:5) | |
|
771 | Task Parameter: | |
|
772 | Properties= | |
|
773 | RestoreUseCustomAfterTargets= | |
|
774 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
775 | BuildProjectReferences=false | |
|
776 | ExcludeRestorePackageImports=true (TaskId:5) | |
|
777 | Global Properties: (TaskId:5) | |
|
778 | RestoreUseCustomAfterTargets= (TaskId:5) | |
|
779 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:5) | |
|
780 | BuildProjectReferences=false (TaskId:5) | |
|
781 | ExcludeRestorePackageImports=true (TaskId:5) | |
|
782 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:3) on node 1 (_GenerateRestoreProjectPathWalk target(s)). | |
|
783 | Initial Properties: | |
|
784 | _ = /usr/bin/msbuild | |
|
785 | _DirectoryBuildPropsBasePath = | |
|
786 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
787 | _DirectoryBuildTargetsBasePath = | |
|
788 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
789 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
790 | RestoreUseCustomAfterTargets=; | |
|
791 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
792 | BuildProjectReferences=false; | |
|
793 | ExcludeRestorePackageImports=true; | |
|
794 | ||
|
795 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
796 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
797 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
798 | AllowUnsafeBlocks = false | |
|
799 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
800 | AssemblyName = Implab | |
|
801 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
802 | AssemblyTitle = Implab | |
|
803 | AUDIODRIVER = pulseaudio | |
|
804 | Authors = Sergey Smirnov | |
|
805 | BaseIntermediateOutputPath = obj\ | |
|
806 | BaseOutputPath = bin\ | |
|
807 | BuildInParallel = true | |
|
808 | BuildOutputTargetFolder = lib | |
|
809 | BuildProjectReferences = false | |
|
810 | CheckForOverflowUnderflow = false | |
|
811 | CHROME_DESKTOP = Code.desktop | |
|
812 | COLORTERM = 1 | |
|
813 | Company = Sergey Smirnov | |
|
814 | Configuration = Debug | |
|
815 | Configurations = Debug;Release | |
|
816 | ContentTargetFolders = content;contentFiles | |
|
817 | Copyright = 2012-2018 Sergey Smirnov | |
|
818 | CPU = x86_64 | |
|
819 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
820 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CrossTargeting.targets | |
|
821 | CSHEDIT = emacs | |
|
822 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
823 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
824 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
825 | DebugSymbols = true | |
|
826 | DebugType = portable | |
|
827 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
828 | DefineConstants = TRACE | |
|
829 | DelaySign = false | |
|
830 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
831 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
832 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
833 | ||
|
834 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
835 | DESKTOP_SESSION = gnome | |
|
836 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
837 | Deterministic = true | |
|
838 | DisableHandlePackageFileConflicts = true | |
|
839 | DISPLAY = :0 | |
|
840 | ErrorReport = prompt | |
|
841 | ExcludeRestorePackageImports = true | |
|
842 | FileAlignment = 512 | |
|
843 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
844 | FROM_HEADER = | |
|
845 | G_BROKEN_FILENAMES = 1 | |
|
846 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
847 | GDMSESSION = gnome | |
|
848 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
849 | GeneratePackageOnBuild = false | |
|
850 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
851 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
852 | GJS_DEBUG_OUTPUT = stderr | |
|
853 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
854 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
855 | GPG_TTY = /dev/pts/1 | |
|
856 | HideWarningsAndErrors = false | |
|
857 | HISTSIZE = 1000 | |
|
858 | HOME = /home/sergey | |
|
859 | HOST = chamber | |
|
860 | HOSTNAME = chamber | |
|
861 | HOSTTYPE = x86_64 | |
|
862 | ImportByWildcardAfterMicrosoftCommonCrossTargetingTargets = true | |
|
863 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
864 | ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets = true | |
|
865 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
866 | ImportDirectoryBuildProps = true | |
|
867 | ImportDirectoryBuildTargets = true | |
|
868 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
869 | ImportProjectExtensionProps = true | |
|
870 | ImportProjectExtensionTargets = true | |
|
871 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
872 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
873 | IncludeBuildOutput = true | |
|
874 | IncludeContentInPack = true | |
|
875 | IntermediateOutputPath = obj\Debug\ | |
|
876 | IsCrossTargetingBuild = true | |
|
877 | IsPackable = true | |
|
878 | IsRestoreTargetsFileLoaded = true | |
|
879 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
880 | JAVA_HOME = /usr/lib64/jvm/java | |
|
881 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
882 | JDK_HOME = /usr/lib64/jvm/java | |
|
883 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
884 | LANG = en_US.UTF-8 | |
|
885 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
886 | LC_CTYPE = ru_RU.UTF-8 | |
|
887 | LESS = -M -I -R | |
|
888 | LESS_ADVANCED_PREPROCESSOR = no | |
|
889 | LESSCLOSE = lessclose.sh %s %s | |
|
890 | LESSKEY = /etc/lesskey.bin | |
|
891 | LESSOPEN = lessopen.sh %s | |
|
892 | LocalAppData = /home/sergey/.local/share | |
|
893 | LOGNAME = sergey | |
|
894 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
895 | LS_OPTIONS = -N --color=tty -T 0 | |
|
896 | MACHTYPE = x86_64-suse-linux | |
|
897 | MAIL = /var/spool/mail/sergey | |
|
898 | MANPATH = /usr/local/man:/usr/share/man | |
|
899 | MicrosoftCommonPropsHasBeenImported = true | |
|
900 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
901 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
902 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
903 | MicrosoftNETBuildTasksTFM = net46 | |
|
904 | MINICOM = -c on | |
|
905 | MONO_GC_PARAMS = nursery-size=64m, | |
|
906 | MORE = -sl | |
|
907 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
908 | MSBuildAssemblyVersion = 15.0 | |
|
909 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
910 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
911 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
912 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
913 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
914 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
915 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
916 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
917 | MSBuildNodeCount = 1 | |
|
918 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
919 | MSBuildProjectDefaultTargets = Build | |
|
920 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
921 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
922 | MSBuildProjectExtension = .csproj | |
|
923 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
924 | MSBuildProjectFile = Implab.csproj | |
|
925 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
926 | MSBuildProjectName = Implab | |
|
927 | MSBuildRuntimeType = Mono | |
|
928 | MSBuildRuntimeVersion = 4.0.30319 | |
|
929 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
930 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
931 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
932 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
933 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
934 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
935 | MSBuildToolsVersion = 15.0 | |
|
936 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
937 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
938 | NNTPSERVER = news | |
|
939 | NoLogo = true | |
|
940 | NoWarn = 1701;1702;1705 | |
|
941 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
942 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
943 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
944 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
945 | NuspecOutputPath = obj\Debug\ | |
|
946 | Optimize = false | |
|
947 | OS = Unix | |
|
948 | OSTYPE = linux | |
|
949 | OutputPath = bin\Debug\ | |
|
950 | OutputType = Library | |
|
951 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
952 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
953 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
954 | ||
|
955 | PackageId = Implab | |
|
956 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
957 | PackageOutputPath = bin\Debug\ | |
|
958 | PackageProjectUrl = https://implab.org | |
|
959 | PackageRequireLicenseAcceptance = false | |
|
960 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
961 | PackageVersion = 3.0.10 | |
|
962 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
963 | PAGER = less | |
|
964 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
965 | Platform = AnyCPU | |
|
966 | PlatformName = AnyCPU | |
|
967 | Platforms = AnyCPU | |
|
968 | Prefer32Bit = false | |
|
969 | Product = Implab | |
|
970 | PROFILEREAD = true | |
|
971 | PWD = /home/sergey/projects/ImplabNet | |
|
972 | PYTHONSTARTUP = /etc/pythonstart | |
|
973 | QEMU_AUDIO_DRV = pa | |
|
974 | QT_IM_MODULE = ibus | |
|
975 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
976 | RepositoryType = mercurial | |
|
977 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
978 | ResolveNuGetPackages = false | |
|
979 | RestoreContinueOnError = WarnAndContinue | |
|
980 | RestoreProjectStyle = PackageReference | |
|
981 | RestoreRecursive = true | |
|
982 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
983 | RestoreUseCustomAfterTargets = | |
|
984 | RootNamespace = Implab | |
|
985 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
986 | SDK_HOME = /usr/lib64/jvm/java | |
|
987 | SDK35ToolsPath = / | |
|
988 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
989 | SDL_AUDIODRIVER = pulse | |
|
990 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
991 | SHELL = /bin/bash | |
|
992 | SHLVL = 3 | |
|
993 | SignAssembly = false | |
|
994 | SkipImportNuGetBuildTargets = true | |
|
995 | SkipImportNuGetProps = true | |
|
996 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
997 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
998 | TargetFrameworks = netstandard2.0 | |
|
999 | TERM = xterm | |
|
1000 | TERM_PROGRAM = vscode | |
|
1001 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
1002 | Title = Implab library | |
|
1003 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
1004 | TreatWarningsAsErrors = false | |
|
1005 | USER = sergey | |
|
1006 | USERNAME = sergey | |
|
1007 | UsingMicrosoftNETSdk = true | |
|
1008 | ValidateRuntimeIdentifierCompatibility = false | |
|
1009 | Version = 3.0.10 | |
|
1010 | VisualStudioVersion = 15.0 | |
|
1011 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
1012 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
1013 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
1014 | VSCODE_PID = 32392 | |
|
1015 | WarningLevel = 4 | |
|
1016 | WarningsAsErrors = NU1605 | |
|
1017 | WAYLAND_DISPLAY = wayland-0 | |
|
1018 | WINDOWMANAGER = /usr/bin/gnome | |
|
1019 | WMSJSProject = WJProject | |
|
1020 | WMSJSProjectDirectory = JavaScript | |
|
1021 | XAUTHLOCALHOSTNAME = chamber | |
|
1022 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
1023 | XCURSOR_THEME = DMZ | |
|
1024 | XDG_CONFIG_DIRS = /etc/xdg | |
|
1025 | XDG_CURRENT_DESKTOP = GNOME | |
|
1026 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
1027 | XDG_MENU_PREFIX = gnome- | |
|
1028 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
1029 | XDG_SEAT = seat0 | |
|
1030 | XDG_SESSION_DESKTOP = gnome | |
|
1031 | XDG_SESSION_ID = 1 | |
|
1032 | XDG_SESSION_TYPE = wayland | |
|
1033 | XDG_VTNR = 2 | |
|
1034 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
1035 | XMODIFIERS = @im=ibus | |
|
1036 | XNLSPATH = /usr/share/X11/nls | |
|
1037 | ||
|
1038 | Initial Items: | |
|
1039 | _ValidProjectsForRestore | |
|
1040 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
1041 | EmbeddedResource | |
|
1042 | Xml/json.xsl | |
|
1043 | ProjectCapability | |
|
1044 | Pack | |
|
1045 | SupportedTargetFramework | |
|
1046 | .NETCoreApp,Version=v1.0 | |
|
1047 | DisplayName = .NET Core 1.0 | |
|
1048 | .NETCoreApp,Version=v1.1 | |
|
1049 | DisplayName = .NET Core 1.1 | |
|
1050 | .NETCoreApp,Version=v2.0 | |
|
1051 | DisplayName = .NET Core 2.0 | |
|
1052 | .NETStandard,Version=v1.0 | |
|
1053 | DisplayName = .NET Standard 1.0 | |
|
1054 | .NETStandard,Version=v1.1 | |
|
1055 | DisplayName = .NET Standard 1.1 | |
|
1056 | .NETStandard,Version=v1.2 | |
|
1057 | DisplayName = .NET Standard 1.2 | |
|
1058 | .NETStandard,Version=v1.3 | |
|
1059 | DisplayName = .NET Standard 1.3 | |
|
1060 | .NETStandard,Version=v1.4 | |
|
1061 | DisplayName = .NET Standard 1.4 | |
|
1062 | .NETStandard,Version=v1.5 | |
|
1063 | DisplayName = .NET Standard 1.5 | |
|
1064 | .NETStandard,Version=v1.6 | |
|
1065 | DisplayName = .NET Standard 1.6 | |
|
1066 | .NETStandard,Version=v2.0 | |
|
1067 | DisplayName = .NET Standard 2.0 | |
|
1068 | ||
|
1069 | Building with tools version "15.0". | |
|
1070 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
1071 | Target "_GetProjectJsonPath: (TargetId:6)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreProjectStyle" depends on it): | |
|
1072 | Task "GetRestoreProjectJsonPathTask" skipped, due to false condition; ( '$(RestoreProjectStyle)' == 'ProjectJson' OR '$(RestoreProjectStyle)' == '' ) was evaluated as ( 'PackageReference' == 'ProjectJson' OR 'PackageReference' == '' ). | |
|
1073 | Done building target "_GetProjectJsonPath" in project "Implab.csproj".: (TargetId:6) | |
|
1074 | Target "CollectPackageReferences: (TargetId:7)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreProjectStyle" depends on it): | |
|
1075 | Done building target "CollectPackageReferences" in project "Implab.csproj".: (TargetId:7) | |
|
1076 | Target "_GetRestoreProjectStyle: (TargetId:8)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreTargetFrameworksOutput" depends on it): | |
|
1077 | Done building target "_GetRestoreProjectStyle" in project "Implab.csproj".: (TargetId:8) | |
|
1078 | Target "_GetRestoreTargetFrameworksOutput: (TargetId:9)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreProjectPathItems" depends on it): | |
|
1079 | Set Property: _RestoreProjectFramework= | |
|
1080 | Using "GetProjectTargetFrameworksTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
1081 | Task "GetProjectTargetFrameworksTask" (TaskId:6) | |
|
1082 | Task Parameter:ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:6) | |
|
1083 | Task Parameter:TargetFrameworks=netstandard2.0 (TaskId:6) | |
|
1084 | (in) ProjectPath '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:6) | |
|
1085 | (in) TargetFrameworkMoniker '' (TaskId:6) | |
|
1086 | (in) TargetPlatformIdentifier '' (TaskId:6) | |
|
1087 | (in) TargetPlatformVersion '' (TaskId:6) | |
|
1088 | (in) TargetPlatformMinVersion '' (TaskId:6) | |
|
1089 | (in) TargetFrameworks 'netstandard2.0' (TaskId:6) | |
|
1090 | (in) TargetFramework '' (TaskId:6) | |
|
1091 | (out) ProjectTargetFrameworks 'netstandard2.0' (TaskId:6) | |
|
1092 | Output Property: _RestoreProjectFramework=netstandard2.0 (TaskId:6) | |
|
1093 | Done executing task "GetProjectTargetFrameworksTask". (TaskId:6) | |
|
1094 | Added Item(s): _RestoreTargetFrameworksOutputFiltered=netstandard2.0 | |
|
1095 | Done building target "_GetRestoreTargetFrameworksOutput" in project "Implab.csproj".: (TargetId:9) | |
|
1096 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
1097 | Target "_GetRestoreTargetFrameworksOutput" skipped. Previously built successfully. | |
|
1098 | Target "_GetRestoreTargetFrameworksAsItems: (TargetId:10)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreProjectPathItems" depends on it): | |
|
1099 | Set Property: _RestoreTargetFrameworkItemsHasValues=true | |
|
1100 | Added Item(s): _RestoreTargetFrameworkItems=netstandard2.0 | |
|
1101 | Done building target "_GetRestoreTargetFrameworksAsItems" in project "Implab.csproj".: (TargetId:10) | |
|
1102 | Target "_GenerateRestoreProjectPathItems: (TargetId:11)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreProjectPathWalk" depends on it): | |
|
1103 | Task "MSBuild" (TaskId:7) | |
|
1104 | Task Parameter:Projects=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:7) | |
|
1105 | Task Parameter:Targets=_GenerateRestoreProjectPathItemsPerFramework (TaskId:7) | |
|
1106 | Task Parameter: | |
|
1107 | Properties= | |
|
1108 | TargetFramework=netstandard2.0 | |
|
1109 | RestoreUseCustomAfterTargets= | |
|
1110 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
1111 | BuildProjectReferences=false | |
|
1112 | ExcludeRestorePackageImports=true (TaskId:7) | |
|
1113 | Global Properties: (TaskId:7) | |
|
1114 | TargetFramework=netstandard2.0 (TaskId:7) | |
|
1115 | RestoreUseCustomAfterTargets= (TaskId:7) | |
|
1116 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:7) | |
|
1117 | BuildProjectReferences=false (TaskId:7) | |
|
1118 | ExcludeRestorePackageImports=true (TaskId:7) | |
|
1119 | Property reassignment: $(MSBuildProjectExtensionsPath)="/home/sergey/projects/ImplabNet/Implab/obj/" (previous value: "obj\") at /usr/lib/mono/xbuild/15.0/Microsoft.Common.props (58,5) | |
|
1120 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props (13,5) | |
|
1121 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props (15,5) | |
|
1122 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props (21,5) | |
|
1123 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props (17,9) | |
|
1124 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props (15,5) | |
|
1125 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets (15,5) | |
|
1126 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets (15,5) | |
|
1127 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets (15,5) | |
|
1128 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets (27,5) | |
|
1129 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets (46,5) | |
|
1130 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**" (previous value: ";bin\Debug\/**") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets (164,5) | |
|
1131 | Property reassignment: $(IntermediateOutputPath)="obj\Debug\netstandard2.0\" (previous value: "obj\Debug\") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets (176,5) | |
|
1132 | Property reassignment: $(OutputPath)="bin\Debug\netstandard2.0\" (previous value: "bin\Debug\") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets (177,5) | |
|
1133 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets (15,5) | |
|
1134 | Property reassignment: $(_TargetFrameworkVersionWithoutV)="2.0" (previous value: "v2.0") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets (91,5) | |
|
1135 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets (15,5) | |
|
1136 | Property reassignment: $(_FrameworkVersionForImplicitDefine)="2_0" (previous value: "2.0") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets (154,5) | |
|
1137 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets (38,9) | |
|
1138 | Property reassignment: $(_ConfigurationNameTmp)="Debug" (previous value: "") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.Mono.targets (43,9) | |
|
1139 | Property reassignment: $(_DebugFileExt)=".pdb" (previous value: "") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (130,5) | |
|
1140 | Property reassignment: $(_DebugSymbolsProduced)="true" (previous value: "false") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (154,5) | |
|
1141 | Property reassignment: $(_DocumentationFileProduced)="false" (previous value: "true") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (163,5) | |
|
1142 | Property reassignment: $(ProcessorArchitecture)="msil" (previous value: "") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (492,5) | |
|
1143 | Property reassignment: $(DelaySign)="" (previous value: "false") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (531,5) | |
|
1144 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets (542,5) | |
|
1145 | Property reassignment: $(GenerateManifestsDependsOn)="" (previous value: " | |
|
1146 | SetWin32ManifestProperties; | |
|
1147 | GenerateApplicationManifest; | |
|
1148 | GenerateDeploymentManifest | |
|
1149 | ") at /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.Mono.targets (24,9) | |
|
1150 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets") at /usr/lib/mono/msbuild/15.0/bin/NuGet.targets (45,5) | |
|
1151 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets") at /usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets (14,5) | |
|
1152 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets") at /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets (15,5) | |
|
1153 | Property reassignment: $(_TargetFrameworkVersionWithoutV)="v2.0" (previous value: "2.0") at /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets (17,5) | |
|
1154 | Property reassignment: $(_TargetFrameworkVersionWithoutV)="2.0" (previous value: "v2.0") at /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets (18,5) | |
|
1155 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets") at /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets (4,5) | |
|
1156 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets (15,5) | |
|
1157 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets (17,5) | |
|
1158 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets (23,5) | |
|
1159 | Property reassignment: $(ProjectAssetsFile)="/home/sergey/projects/ImplabNet/Implab/obj/project.assets.json" (previous value: "obj\/project.assets.json") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets (33,5) | |
|
1160 | Property reassignment: $(ResolveAssemblyReferencesDependsOn)=" | |
|
1161 | ||
|
1162 | GetFrameworkPaths; | |
|
1163 | GetReferenceAssemblyPaths; | |
|
1164 | PrepareForBuild; | |
|
1165 | ResolveSDKReferences; | |
|
1166 | ExpandSDKReferences; | |
|
1167 | ; | |
|
1168 | ResolvePackageDependenciesForBuild; | |
|
1169 | _HandlePackageFileConflicts; | |
|
1170 | " (previous value: " | |
|
1171 | GetFrameworkPaths; | |
|
1172 | GetReferenceAssemblyPaths; | |
|
1173 | PrepareForBuild; | |
|
1174 | ResolveSDKReferences; | |
|
1175 | ExpandSDKReferences; | |
|
1176 | ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets (64,5) | |
|
1177 | Property reassignment: $(PrepareResourcesDependsOn)=" | |
|
1178 | ResolvePackageDependenciesForBuild; | |
|
1179 | _HandlePackageFileConflicts; | |
|
1180 | ||
|
1181 | PrepareResourceNames; | |
|
1182 | ResGen; | |
|
1183 | CompileLicxFiles | |
|
1184 | ||
|
1185 | " (previous value: " | |
|
1186 | PrepareResourceNames; | |
|
1187 | ResGen; | |
|
1188 | CompileLicxFiles | |
|
1189 | ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets (70,5) | |
|
1190 | Property reassignment: $(EmitsDependencyDiagnosticMessages)=" | |
|
1191 | ReportAssetsLogMessages; | |
|
1192 | ||
|
1193 | RunResolvePackageDependencies; | |
|
1194 | ||
|
1195 | ||
|
1196 | " (previous value: " | |
|
1197 | RunResolvePackageDependencies; | |
|
1198 | ||
|
1199 | ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets (337,5) | |
|
1200 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (15,5) | |
|
1201 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**" (previous value: ";bin\Debug\/**;obj\Debug\/**") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (30,5) | |
|
1202 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (32,5) | |
|
1203 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (35,5) | |
|
1204 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (36,5) | |
|
1205 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (37,5) | |
|
1206 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (38,5) | |
|
1207 | Property reassignment: $(DefaultItemExcludes)=";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;packages/**" (previous value: ";bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets (46,5) | |
|
1208 | Property reassignment: $(_DefaultUserProfileRuntimeStorePath)="/home/sergey/.dotnet/store" (previous value: "/home/sergey") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets (81,5) | |
|
1209 | Property reassignment: $(CoreBuildDependsOn)=" | |
|
1210 | ||
|
1211 | BuildOnlySettings; | |
|
1212 | PrepareForBuild; | |
|
1213 | PreBuildEvent; | |
|
1214 | ResolveReferences; | |
|
1215 | PrepareResources; | |
|
1216 | ResolveKeySource; | |
|
1217 | Compile; | |
|
1218 | ExportWindowsMDFile; | |
|
1219 | UnmanagedUnregistration; | |
|
1220 | GenerateSerializationAssemblies; | |
|
1221 | CreateSatelliteAssemblies; | |
|
1222 | GenerateManifests; | |
|
1223 | GetTargetPath; | |
|
1224 | PrepareForRun; | |
|
1225 | UnmanagedRegistration; | |
|
1226 | IncrementalClean; | |
|
1227 | PostBuildEvent | |
|
1228 | ; | |
|
1229 | GenerateBuildDependencyFile; | |
|
1230 | GenerateBuildRuntimeConfigurationFiles | |
|
1231 | " (previous value: " | |
|
1232 | BuildOnlySettings; | |
|
1233 | PrepareForBuild; | |
|
1234 | PreBuildEvent; | |
|
1235 | ResolveReferences; | |
|
1236 | PrepareResources; | |
|
1237 | ResolveKeySource; | |
|
1238 | Compile; | |
|
1239 | ExportWindowsMDFile; | |
|
1240 | UnmanagedUnregistration; | |
|
1241 | GenerateSerializationAssemblies; | |
|
1242 | CreateSatelliteAssemblies; | |
|
1243 | GenerateManifests; | |
|
1244 | GetTargetPath; | |
|
1245 | PrepareForRun; | |
|
1246 | UnmanagedRegistration; | |
|
1247 | IncrementalClean; | |
|
1248 | PostBuildEvent | |
|
1249 | ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets (86,5) | |
|
1250 | Property reassignment: $(CreateSatelliteAssembliesDependsOn)=" | |
|
1251 | ||
|
1252 | _GenerateSatelliteAssemblyInputs; | |
|
1253 | ComputeIntermediateSatelliteAssemblies; | |
|
1254 | GenerateSatelliteAssemblies | |
|
1255 | ; | |
|
1256 | CoreGenerateSatelliteAssemblies | |
|
1257 | " (previous value: " | |
|
1258 | _GenerateSatelliteAssemblyInputs; | |
|
1259 | ComputeIntermediateSatelliteAssemblies; | |
|
1260 | GenerateSatelliteAssemblies | |
|
1261 | ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets (397,5) | |
|
1262 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets (18,5) | |
|
1263 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets (21,5) | |
|
1264 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets (22,5) | |
|
1265 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets (15,5) | |
|
1266 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets (15,5) | |
|
1267 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets (15,5) | |
|
1268 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets (16,5) | |
|
1269 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets (14,5) | |
|
1270 | Property reassignment: $(DefineConstants)="TRACE;DEBUG" (previous value: "TRACE") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets (31,5) | |
|
1271 | Property reassignment: $(DefineConstants)="TRACE;DEBUG;NETSTANDARD2_0" (previous value: "TRACE;DEBUG") at /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets (34,5) | |
|
1272 | Property reassignment: $(MSBuildAllProjects)=";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets" (previous value: ";/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets (17,5) | |
|
1273 | Property reassignment: $(GenerateNuspecDependsOn)="Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; " (previous value: "_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; ") at /usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets (49,5) | |
|
1274 | Overriding target "ResolveNativeReferences" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "ResolveNativeReferences" from project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.Mono.targets". | |
|
1275 | Overriding target "GenerateManifests" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "GenerateManifests" from project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.Mono.targets". | |
|
1276 | Overriding target "GetTargetFrameworkProperties" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "GetTargetFrameworkProperties" from project "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets". | |
|
1277 | Overriding target "GetReferenceAssemblyPaths" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "GetReferenceAssemblyPaths" from project "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets". | |
|
1278 | Overriding target "GetFrameworkPaths" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "GetFrameworkPaths" from project "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets". | |
|
1279 | Overriding target "Publish" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "Publish" from project "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets". | |
|
1280 | Overriding target "GetCopyToPublishDirectoryItems" in project "/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets" with target "GetCopyToPublishDirectoryItems" from project "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets". | |
|
1281 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:3) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:4) on node 1 (_GenerateRestoreProjectPathItemsPerFramework target(s)). | |
|
1282 | Initial Properties: | |
|
1283 | _ = /usr/bin/msbuild | |
|
1284 | _ComputeExcludeFromPublishPackageReferences = true | |
|
1285 | _ConfigurationNameTmp = Debug | |
|
1286 | _DebugFileExt = .pdb | |
|
1287 | _DebugSymbolsProduced = true | |
|
1288 | _DefaultUserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
1289 | _DeploymentApplicationManifestIdentity = Native.Implab | |
|
1290 | _DeploymentBuiltUpdateInterval = 0 | |
|
1291 | _DeploymentBuiltUpdateIntervalUnits = Days | |
|
1292 | _DeploymentDeployManifestIdentity = Implab.application | |
|
1293 | _DeploymentFileMappingExtension = | |
|
1294 | _DeploymentTargetApplicationManifestFileName = Native.Implab.manifest | |
|
1295 | _DeploymentUrl = | |
|
1296 | _DirectoryBuildPropsBasePath = | |
|
1297 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
1298 | _DirectoryBuildTargetsBasePath = | |
|
1299 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
1300 | _DocumentationFileProduced = false | |
|
1301 | _DotNetAppHostExecutableName = apphost | |
|
1302 | _DotNetHostExecutableName = dotnet | |
|
1303 | _DotNetHostFxrLibraryName = libhostfxr.so | |
|
1304 | _DotNetHostPolicyLibraryName = libhostpolicy.so | |
|
1305 | _FrameworkIdentifierForImplicitDefine = NETSTANDARD | |
|
1306 | _FrameworkVersionForImplicitDefine = 2_0 | |
|
1307 | _GenerateBindingRedirectsIntermediateAppConfig = obj\Debug\netstandard2.0\Implab.dll.config | |
|
1308 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
1309 | RestoreUseCustomAfterTargets=; | |
|
1310 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
1311 | BuildProjectReferences=false; | |
|
1312 | ExcludeRestorePackageImports=true; | |
|
1313 | ||
|
1314 | _GetChildProjectCopyToOutputDirectoryItems = true | |
|
1315 | _GetChildProjectCopyToPublishDirectoryItems = true | |
|
1316 | _ImplicitPackageName = NETStandard.Library | |
|
1317 | _IsNETCoreOrNETStandard = true | |
|
1318 | _NativeLibraryExtension = .so | |
|
1319 | _NativeLibraryPrefix = lib | |
|
1320 | _NugetFallbackFolder = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../../NuGetFallbackFolder | |
|
1321 | _NugetTargetMonikerAndRID = .NETStandard,Version=v2.0 | |
|
1322 | _OriginalConfiguration = Debug | |
|
1323 | _OriginalPlatform = AnyCPU | |
|
1324 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
1325 | _ProjectDefaultTargets = Build | |
|
1326 | _ResolveReferenceDependencies = false | |
|
1327 | _SGenDllCreated = false | |
|
1328 | _SGenDllName = Implab.XmlSerializers.dll | |
|
1329 | _SGenGenerateSerializationAssembliesConfig = Off | |
|
1330 | _ShortFrameworkIdentifier = netstandard | |
|
1331 | _ShortFrameworkVersion = 2.0 | |
|
1332 | _TargetFrameworkDirectories = | |
|
1333 | _TargetFrameworkVersionWithoutV = 2.0 | |
|
1334 | _UsingDefaultForHasRuntimeOutput = true | |
|
1335 | _UsingDefaultPlatformTarget = true | |
|
1336 | AddAdditionalExplicitAssemblyReferences = false | |
|
1337 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
1338 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
1339 | AllowedReferenceAssemblyFileExtensions = | |
|
1340 | .winmd; | |
|
1341 | .dll; | |
|
1342 | .exe | |
|
1343 | ||
|
1344 | AllowedReferenceRelatedDebugFileExtensions = | |
|
1345 | .pdb; | |
|
1346 | .dll.mdb; | |
|
1347 | .exe.mdb | |
|
1348 | ||
|
1349 | AllowedReferenceRelatedFileExtensions = | |
|
1350 | ||
|
1351 | .pdb; | |
|
1352 | .dll.mdb; | |
|
1353 | .exe.mdb | |
|
1354 | ; | |
|
1355 | .xml; | |
|
1356 | .pri; | |
|
1357 | .dll.config; | |
|
1358 | .exe.config | |
|
1359 | ||
|
1360 | AllowUnsafeBlocks = false | |
|
1361 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
1362 | AlwaysUseNumericalSuffixInItemNames = true | |
|
1363 | AppDesignerFolder = Properties | |
|
1364 | AppendRuntimeIdentifierToOutputPath = true | |
|
1365 | AppendTargetFrameworkToOutputPath = true | |
|
1366 | AssemblyFoldersConfigFile = /usr/lib/mono/msbuild/15.0/bin/AssemblyFolders.config | |
|
1367 | AssemblyFoldersSuffix = AssemblyFoldersEx | |
|
1368 | AssemblyName = Implab | |
|
1369 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
1370 | AssemblyTitle = Implab | |
|
1371 | AssetTargetFallback = ;net461 | |
|
1372 | AssignTargetPathsDependsOn = | |
|
1373 | AUDIODRIVER = pulseaudio | |
|
1374 | Authors = Sergey Smirnov | |
|
1375 | AutoUnifyAssemblyReferences = true | |
|
1376 | AvailablePlatforms = Any CPU,x86,x64 | |
|
1377 | BaseIntermediateOutputPath = obj\ | |
|
1378 | BaseOutputPath = bin\ | |
|
1379 | BuildCompileAction = Build | |
|
1380 | BuildDependsOn = | |
|
1381 | BeforeBuild; | |
|
1382 | CoreBuild; | |
|
1383 | AfterBuild | |
|
1384 | ||
|
1385 | BuildGenerateSourcesAction = Build | |
|
1386 | BuildingProject = false | |
|
1387 | BuildInParallel = true | |
|
1388 | BuildLinkAction = Build | |
|
1389 | BuildOutputTargetFolder = lib | |
|
1390 | BuildProjectReferences = false | |
|
1391 | BuiltProjectOutputGroupDependsOn = PrepareForBuild | |
|
1392 | CheckForOverflowUnderflow = false | |
|
1393 | CHROME_DESKTOP = Code.desktop | |
|
1394 | CleanDependsOn = | |
|
1395 | BeforeClean; | |
|
1396 | UnmanagedUnregistration; | |
|
1397 | CoreClean; | |
|
1398 | CleanReferencedProjects; | |
|
1399 | CleanPublishFolder; | |
|
1400 | AfterClean | |
|
1401 | ||
|
1402 | CleanFile = Implab.csproj.FileListAbsolute.txt | |
|
1403 | CodeAnalysisTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/CodeAnalysis/Microsoft.CodeAnalysis.targets | |
|
1404 | COLORTERM = 1 | |
|
1405 | CommonMonoTargetsPath = Microsoft.Common.Mono.targets | |
|
1406 | CommonTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets | |
|
1407 | CommonXamlResourcesDirectory = /usr/lib/mono/msbuild/15.0/bin/ | |
|
1408 | Company = Sergey Smirnov | |
|
1409 | CompileDependsOn = | |
|
1410 | ResolveReferences; | |
|
1411 | ResolveKeySource; | |
|
1412 | SetWin32ManifestProperties; | |
|
1413 | FindReferenceAssembliesForReferences; | |
|
1414 | _GenerateCompileInputs; | |
|
1415 | BeforeCompile; | |
|
1416 | _TimeStampBeforeCompile; | |
|
1417 | _GenerateCompileDependencyCache; | |
|
1418 | CoreCompile; | |
|
1419 | _TimeStampAfterCompile; | |
|
1420 | AfterCompile; | |
|
1421 | ||
|
1422 | CompileLicxFilesDependsOn = | |
|
1423 | ComputeIntermediateSatelliteAssembliesDependsOn = | |
|
1424 | CreateManifestResourceNames | |
|
1425 | ||
|
1426 | ComReferenceExecuteAsTool = false | |
|
1427 | ComReferenceNoClassMembers = false | |
|
1428 | Configuration = Debug | |
|
1429 | ConfigurationName = Debug | |
|
1430 | Configurations = Debug;Release | |
|
1431 | ConsiderPlatformAsProcessorArchitecture = true | |
|
1432 | ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
1433 | ContentPreprocessorOutputDirectory = obj\Debug\netstandard2.0\NuGet\ | |
|
1434 | ContentTargetFolders = content;contentFiles | |
|
1435 | ContinueOnError = false | |
|
1436 | CopyLocalLockFileAssemblies = false | |
|
1437 | Copyright = 2012-2018 Sergey Smirnov | |
|
1438 | CoreBuildDependsOn = | |
|
1439 | ||
|
1440 | BuildOnlySettings; | |
|
1441 | PrepareForBuild; | |
|
1442 | PreBuildEvent; | |
|
1443 | ResolveReferences; | |
|
1444 | PrepareResources; | |
|
1445 | ResolveKeySource; | |
|
1446 | Compile; | |
|
1447 | ExportWindowsMDFile; | |
|
1448 | UnmanagedUnregistration; | |
|
1449 | GenerateSerializationAssemblies; | |
|
1450 | CreateSatelliteAssemblies; | |
|
1451 | GenerateManifests; | |
|
1452 | GetTargetPath; | |
|
1453 | PrepareForRun; | |
|
1454 | UnmanagedRegistration; | |
|
1455 | IncrementalClean; | |
|
1456 | PostBuildEvent | |
|
1457 | ; | |
|
1458 | GenerateBuildDependencyFile; | |
|
1459 | GenerateBuildRuntimeConfigurationFiles | |
|
1460 | ||
|
1461 | CoreCleanDependsOn = | |
|
1462 | CoreCompileDependsOn = _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet | |
|
1463 | CoreResGenDependsOn = FindReferenceAssembliesForReferences | |
|
1464 | CPU = x86_64 | |
|
1465 | CreateCustomManifestResourceNamesDependsOn = | |
|
1466 | CreateHardLinksForCopyAdditionalFilesIfPossible = false | |
|
1467 | CreateManifestResourceNamesDependsOn = | |
|
1468 | CreateSatelliteAssembliesDependsOn = | |
|
1469 | ||
|
1470 | _GenerateSatelliteAssemblyInputs; | |
|
1471 | ComputeIntermediateSatelliteAssemblies; | |
|
1472 | GenerateSatelliteAssemblies | |
|
1473 | ; | |
|
1474 | CoreGenerateSatelliteAssemblies | |
|
1475 | ||
|
1476 | CreateSymbolicLinksForCopyAdditionalFilesIfPossible = false | |
|
1477 | CscToolPath = /usr/lib/mono/4.5/ | |
|
1478 | CSharpCoreTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets | |
|
1479 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
1480 | CSharpMonoTargetsPath = Microsoft.CSharp.Mono.targets | |
|
1481 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets | |
|
1482 | CSHEDIT = emacs | |
|
1483 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
1484 | CustomAfterMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.targets | |
|
1485 | CustomAfterMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.CSharp.targets | |
|
1486 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
1487 | CustomBeforeMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.targets | |
|
1488 | CustomBeforeMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.CSharp.targets | |
|
1489 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
1490 | DebugSymbols = true | |
|
1491 | DebugSymbolsProjectOutputGroupDependsOn = | |
|
1492 | DebugType = portable | |
|
1493 | DefaultCopyToPublishDirectoryMetadata = true | |
|
1494 | DefaultExcludesInProjectFolder = ;**/.*/** | |
|
1495 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
1496 | DefaultItemExcludes = ;bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;packages/** | |
|
1497 | DefaultLanguageSourceExtension = .cs | |
|
1498 | DefaultProjectTypeGuid = {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
|
1499 | DefineCommonCapabilities = true | |
|
1500 | DefineCommonItemSchemas = true | |
|
1501 | DefineCommonReferenceSchemas = true | |
|
1502 | DefineConstants = TRACE;DEBUG;NETSTANDARD2_0 | |
|
1503 | DelaySign = | |
|
1504 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
1505 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
1506 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
1507 | ||
|
1508 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
1509 | DesignTimeAutoUnify = true | |
|
1510 | DesignTimeResolveAssemblyReferencesDependsOn = | |
|
1511 | GetFrameworkPaths; | |
|
1512 | GetReferenceAssemblyPaths; | |
|
1513 | ResolveReferences | |
|
1514 | ||
|
1515 | DESKTOP_SESSION = gnome | |
|
1516 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
1517 | Deterministic = true | |
|
1518 | DevEnvDir = *Undefined* | |
|
1519 | DisableHandlePackageFileConflicts = true | |
|
1520 | DisableStandardFrameworkResolution = true | |
|
1521 | DISPLAY = :0 | |
|
1522 | DocumentationFile = | |
|
1523 | DocumentationProjectOutputGroupDependsOn = | |
|
1524 | EmbeddedWin32Manifest = | |
|
1525 | EmitAssetsLogMessages = true | |
|
1526 | EmitsDependencyDiagnosticMessages = | |
|
1527 | ReportAssetsLogMessages; | |
|
1528 | ||
|
1529 | RunResolvePackageDependencies; | |
|
1530 | ||
|
1531 | ||
|
1532 | ||
|
1533 | EnableDefaultCompileItems = true | |
|
1534 | EnableDefaultEmbeddedResourceItems = true | |
|
1535 | EnableDefaultItems = true | |
|
1536 | EnableDefaultNoneItems = true | |
|
1537 | EnableFrameworkPathOverride = false | |
|
1538 | ErrorReport = prompt | |
|
1539 | ExcludeRestorePackageImports = true | |
|
1540 | ExecuteAsTool = false | |
|
1541 | ExpandSDKAllowedReferenceExtensions = | |
|
1542 | .winmd; | |
|
1543 | .dll | |
|
1544 | ||
|
1545 | ExpandSDKReferencesDependsOn = | |
|
1546 | ResolveSDKReferences | |
|
1547 | ||
|
1548 | FileAlignment = 512 | |
|
1549 | FilterDeniedAssemblies = false | |
|
1550 | FindInvalidProjectReferencesDependsOn = | |
|
1551 | GetReferenceTargetPlatformMonikers | |
|
1552 | ||
|
1553 | Framework20Dir = @(_TargetFramework20DirectoryItem) | |
|
1554 | Framework30Dir = @(_TargetFramework30DirectoryItem) | |
|
1555 | Framework35Dir = @(_TargetFramework35DirectoryItem) | |
|
1556 | Framework40Dir = @(_TargetFramework40DirectoryItem) | |
|
1557 | FrameworkDir = @(_TargetFramework20DirectoryItem) | |
|
1558 | FrameworkPathOverride = | |
|
1559 | FrameworkRegistryBase = Software\Microsoft\.NETStandard | |
|
1560 | FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem) | |
|
1561 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
1562 | FROM_HEADER = | |
|
1563 | FullReferenceAssemblyNames = Full | |
|
1564 | G_BROKEN_FILENAMES = 1 | |
|
1565 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
1566 | GDMSESSION = gnome | |
|
1567 | GenerateAssemblyCompanyAttribute = true | |
|
1568 | GenerateAssemblyConfigurationAttribute = true | |
|
1569 | GenerateAssemblyCopyrightAttribute = true | |
|
1570 | GenerateAssemblyDescriptionAttribute = true | |
|
1571 | GenerateAssemblyFileVersionAttribute = true | |
|
1572 | GenerateAssemblyInfo = true | |
|
1573 | GenerateAssemblyInformationalVersionAttribute = true | |
|
1574 | GenerateAssemblyProductAttribute = true | |
|
1575 | GenerateAssemblyTitleAttribute = true | |
|
1576 | GenerateAssemblyVersionAttribute = true | |
|
1577 | GeneratedAssemblyInfoFile = obj\Debug\netstandard2.0\Implab.AssemblyInfo.cs | |
|
1578 | GenerateDependencyFile = true | |
|
1579 | GenerateDocumentationFile = false | |
|
1580 | GenerateManifestsDependsOn = | |
|
1581 | GenerateNeutralResourcesLanguageAttribute = true | |
|
1582 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
1583 | GeneratePackageOnBuild = false | |
|
1584 | GenerateResourceMSBuildArchitecture = CurrentArchitecture | |
|
1585 | GenerateResourceMSBuildRuntime = CurrentRuntime | |
|
1586 | GenerateSerializationAssemblies = Off | |
|
1587 | GenerateTargetFrameworkAttribute = true | |
|
1588 | GetCopyToOutputDirectoryItemsDependsOn = | |
|
1589 | AssignTargetPaths; | |
|
1590 | _SplitProjectReferencesByFileExistence; | |
|
1591 | _GetProjectReferenceTargetFrameworkProperties | |
|
1592 | ||
|
1593 | GetFrameworkPathsDependsOn = | |
|
1594 | GetTargetPathDependsOn = | |
|
1595 | GetTargetPathWithTargetPlatformMonikerDependsOn = | |
|
1596 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
1597 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
1598 | GJS_DEBUG_OUTPUT = stderr | |
|
1599 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
1600 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
1601 | GPG_TTY = /dev/pts/1 | |
|
1602 | HasRuntimeOutput = | |
|
1603 | HideWarningsAndErrors = false | |
|
1604 | HISTSIZE = 1000 | |
|
1605 | HOME = /home/sergey | |
|
1606 | HOST = chamber | |
|
1607 | HOSTNAME = chamber | |
|
1608 | HOSTTYPE = x86_64 | |
|
1609 | ImplicitConfigurationDefine = DEBUG | |
|
1610 | ImplicitFrameworkDefine = NETSTANDARD2_0 | |
|
1611 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
1612 | ImportByWildcardAfterMicrosoftCommonTargets = true | |
|
1613 | ImportByWildcardAfterMicrosoftCSharpTargets = true | |
|
1614 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
1615 | ImportByWildcardBeforeMicrosoftCommonTargets = true | |
|
1616 | ImportByWildcardBeforeMicrosoftCSharpTargets = true | |
|
1617 | ImportDirectoryBuildProps = true | |
|
1618 | ImportDirectoryBuildTargets = true | |
|
1619 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
1620 | ImportProjectExtensionProps = true | |
|
1621 | ImportProjectExtensionTargets = true | |
|
1622 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
1623 | ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true | |
|
1624 | ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true | |
|
1625 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
1626 | ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true | |
|
1627 | ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true | |
|
1628 | IncludeBuildOutput = true | |
|
1629 | IncludeContentInPack = true | |
|
1630 | IncludeMainProjectInDepsFile = true | |
|
1631 | IntermediateOutputPath = obj\Debug\netstandard2.0\ | |
|
1632 | IsInnerBuild = true | |
|
1633 | IsPackable = true | |
|
1634 | IsPublishable = true | |
|
1635 | IsRestoreTargetsFileLoaded = true | |
|
1636 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
1637 | JAVA_HOME = /usr/lib64/jvm/java | |
|
1638 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
1639 | JDK_HOME = /usr/lib64/jvm/java | |
|
1640 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
1641 | LANG = en_US.UTF-8 | |
|
1642 | Language = C# | |
|
1643 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
1644 | LC_CTYPE = ru_RU.UTF-8 | |
|
1645 | LESS = -M -I -R | |
|
1646 | LESS_ADVANCED_PREPROCESSOR = no | |
|
1647 | LESSCLOSE = lessclose.sh %s %s | |
|
1648 | LESSKEY = /etc/lesskey.bin | |
|
1649 | LESSOPEN = lessopen.sh %s | |
|
1650 | LocalAppData = /home/sergey/.local/share | |
|
1651 | LOGNAME = sergey | |
|
1652 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
1653 | LS_OPTIONS = -N --color=tty -T 0 | |
|
1654 | MACHTYPE = x86_64-suse-linux | |
|
1655 | MAIL = /var/spool/mail/sergey | |
|
1656 | MANPATH = /usr/local/man:/usr/share/man | |
|
1657 | MaxTargetPath = 100 | |
|
1658 | MicrosoftCommonPropsHasBeenImported = true | |
|
1659 | MicrosoftNETBuildExtensionsTargets = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets | |
|
1660 | MicrosoftNETBuildExtensionsTasksAssembly = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/tools/net46/Microsoft.NET.Build.Extensions.Tasks.dll | |
|
1661 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
1662 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
1663 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
1664 | MicrosoftNETBuildTasksTFM = net46 | |
|
1665 | MINICOM = -c on | |
|
1666 | MONO_GC_PARAMS = nursery-size=64m, | |
|
1667 | MORE = -sl | |
|
1668 | MsAppxPackageTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/AppxPackage/Microsoft.AppXPackage.Targets | |
|
1669 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
1670 | MSBuildAssemblyVersion = 15.0 | |
|
1671 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
1672 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
1673 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
1674 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
1675 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
1676 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
1677 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
1678 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
1679 | MSBuildNodeCount = 1 | |
|
1680 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
1681 | MSBuildProjectDefaultTargets = Build | |
|
1682 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
1683 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
1684 | MSBuildProjectExtension = .csproj | |
|
1685 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
1686 | MSBuildProjectFile = Implab.csproj | |
|
1687 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
1688 | MSBuildProjectName = Implab | |
|
1689 | MSBuildRuntimeType = Mono | |
|
1690 | MSBuildRuntimeVersion = 4.0.30319 | |
|
1691 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
1692 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
1693 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
1694 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
1695 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
1696 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
1697 | MSBuildToolsVersion = 15.0 | |
|
1698 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
1699 | MsTestToolsTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/TeamTest/Microsoft.TeamTest.targets | |
|
1700 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
1701 | NETStandardImplicitPackageVersion = 1.6.1 | |
|
1702 | NETStandardMaximumVersion = | |
|
1703 | NNTPSERVER = news | |
|
1704 | NoCompilerStandardLib = true | |
|
1705 | NoLogo = true | |
|
1706 | NoStdLib = true | |
|
1707 | NoWarn = 1701;1702;1705 | |
|
1708 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
1709 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
1710 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
1711 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
1712 | NuGetTargetMoniker = .NETStandard,Version=v2.0 | |
|
1713 | NuGetTargets = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.targets | |
|
1714 | NuspecOutputPath = obj\Debug\ | |
|
1715 | Optimize = false | |
|
1716 | OS = Unix | |
|
1717 | OSTYPE = linux | |
|
1718 | OutDir = bin\Debug\netstandard2.0\ | |
|
1719 | OutputPath = bin\Debug\netstandard2.0\ | |
|
1720 | OutputType = Library | |
|
1721 | OverwriteReadOnlyFiles = false | |
|
1722 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
1723 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
1724 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
1725 | ||
|
1726 | PackageId = Implab | |
|
1727 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
1728 | PackageOutputPath = bin\Debug\ | |
|
1729 | PackageProjectUrl = https://implab.org | |
|
1730 | PackageRequireLicenseAcceptance = false | |
|
1731 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
1732 | PackageVersion = 3.0.10 | |
|
1733 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
1734 | PAGER = less | |
|
1735 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
1736 | Platform = AnyCPU | |
|
1737 | PlatformName = AnyCPU | |
|
1738 | Platforms = AnyCPU | |
|
1739 | PlatformTargetAsMSBuildArchitecture = CurrentArchitecture | |
|
1740 | PlatformTargetAsMSBuildArchitectureExplicitlySet = false | |
|
1741 | PostBuildEventDependsOn = | |
|
1742 | PreBuildEventDependsOn = | |
|
1743 | Prefer32Bit = false | |
|
1744 | PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata | |
|
1745 | PrepareForRunDependsOn = | |
|
1746 | CopyFilesToOutputDirectory | |
|
1747 | ||
|
1748 | PrepareProjectReferencesDependsOn = | |
|
1749 | AssignProjectConfiguration; | |
|
1750 | _SplitProjectReferencesByFileExistence; | |
|
1751 | _GetProjectReferenceTargetFrameworkProperties | |
|
1752 | ||
|
1753 | PrepareResourceNamesDependsOn = | |
|
1754 | AssignTargetPaths; | |
|
1755 | SplitResourcesByCulture; | |
|
1756 | CreateManifestResourceNames; | |
|
1757 | CreateCustomManifestResourceNames | |
|
1758 | ||
|
1759 | PrepareResourcesDependsOn = | |
|
1760 | ResolvePackageDependenciesForBuild; | |
|
1761 | _HandlePackageFileConflicts; | |
|
1762 | ||
|
1763 | PrepareResourceNames; | |
|
1764 | ResGen; | |
|
1765 | CompileLicxFiles | |
|
1766 | ||
|
1767 | ||
|
1768 | ProcessorArchitecture = msil | |
|
1769 | ProcessorArchitectureAsPlatform = AnyCPU | |
|
1770 | ProduceOnlyPreprocessorFilesInBuildTask = true | |
|
1771 | ProduceReferenceAssembly = false | |
|
1772 | Product = Implab | |
|
1773 | PROFILEREAD = true | |
|
1774 | ProjectAssetsFile = /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
1775 | ProjectDepsFileName = Implab.deps.json | |
|
1776 | ProjectDepsFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.deps.json | |
|
1777 | ProjectDesignTimeAssemblyResolutionSearchPaths = | |
|
1778 | {CandidateAssemblyFiles}; | |
|
1779 | ; | |
|
1780 | {HintPathFromItem}; | |
|
1781 | {TargetFrameworkDirectory}; | |
|
1782 | {Registry:Software\Microsoft\.NETStandard,v2.0,AssemblyFoldersEx}; | |
|
1783 | {RawFileName}; | |
|
1784 | /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
1785 | ||
|
1786 | ProjectDir = /home/sergey/projects/ImplabNet/Implab/ | |
|
1787 | ProjectExt = .csproj | |
|
1788 | ProjectFileName = Implab.csproj | |
|
1789 | ProjectFlavor = Client | |
|
1790 | ProjectName = Implab | |
|
1791 | ProjectPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
1792 | ProjectRuntimeConfigDevFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.dev.json | |
|
1793 | ProjectRuntimeConfigFileName = Implab.runtimeconfig.json | |
|
1794 | ProjectRuntimeConfigFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.json | |
|
1795 | PublishableProject = | |
|
1796 | PublishBuildDependsOn = | |
|
1797 | BuildOnlySettings; | |
|
1798 | PrepareForBuild; | |
|
1799 | ResolveReferences; | |
|
1800 | PrepareResources; | |
|
1801 | ResolveKeySource; | |
|
1802 | GenerateSerializationAssemblies; | |
|
1803 | CreateSatelliteAssemblies; | |
|
1804 | ||
|
1805 | PublishDependsOn = | |
|
1806 | _DeploymentUnpublishable | |
|
1807 | ||
|
1808 | PublishDir = bin\Debug\netstandard2.0\publish\ | |
|
1809 | PublishDirName = publish | |
|
1810 | PublishDocumentationFile = true | |
|
1811 | PublishDocumentationFiles = true | |
|
1812 | PublishOnlyDependsOn = | |
|
1813 | SetGenerateManifests; | |
|
1814 | PublishBuild; | |
|
1815 | BeforePublish; | |
|
1816 | GenerateManifests; | |
|
1817 | CopyFilesToOutputDirectory; | |
|
1818 | _CopyFilesToPublishFolder; | |
|
1819 | _DeploymentGenerateBootstrapper; | |
|
1820 | ResolveKeySource; | |
|
1821 | _DeploymentSignClickOnceDeployment; | |
|
1822 | AfterPublish | |
|
1823 | ||
|
1824 | PublishReferencesDocumentationFiles = true | |
|
1825 | PWD = /home/sergey/projects/ImplabNet | |
|
1826 | PYTHONSTARTUP = /etc/pythonstart | |
|
1827 | QEMU_AUDIO_DRV = pa | |
|
1828 | QT_IM_MODULE = ibus | |
|
1829 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
1830 | RebuildDependsOn = | |
|
1831 | BeforeRebuild; | |
|
1832 | Clean; | |
|
1833 | Build; | |
|
1834 | AfterRebuild; | |
|
1835 | ||
|
1836 | RefAssembliesFolderName = refs | |
|
1837 | ReportingServicesTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/ReportingServices/Microsoft.ReportingServices.targets | |
|
1838 | RepositoryType = mercurial | |
|
1839 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
1840 | ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen | |
|
1841 | ResGenExecuteAsTool = false | |
|
1842 | ResolveAssemblyReferencesDependsOn = | |
|
1843 | ||
|
1844 | GetFrameworkPaths; | |
|
1845 | GetReferenceAssemblyPaths; | |
|
1846 | PrepareForBuild; | |
|
1847 | ResolveSDKReferences; | |
|
1848 | ExpandSDKReferences; | |
|
1849 | ; | |
|
1850 | ResolvePackageDependenciesForBuild; | |
|
1851 | _HandlePackageFileConflicts; | |
|
1852 | ||
|
1853 | ResolveNuGetPackages = false | |
|
1854 | ResolvePackageDependenciesForBuild = true | |
|
1855 | ResolvePackageDependenciesForBuildDependsOn = | |
|
1856 | ResolveLockFileReferences; | |
|
1857 | ResolveLockFileAnalyzers; | |
|
1858 | ResolveLockFileCopyLocalProjectDeps; | |
|
1859 | IncludeTransitiveProjectReferences | |
|
1860 | ||
|
1861 | ResolveReferencesDependsOn = | |
|
1862 | BeforeResolveReferences; | |
|
1863 | AssignProjectConfiguration; | |
|
1864 | ResolveProjectReferences; | |
|
1865 | FindInvalidProjectReferences; | |
|
1866 | ResolveNativeReferences; | |
|
1867 | ResolveAssemblyReferences; | |
|
1868 | GenerateBindingRedirects; | |
|
1869 | ResolveComReferences; | |
|
1870 | AfterResolveReferences | |
|
1871 | ||
|
1872 | ResolveSDKReferencesDependsOn = | |
|
1873 | GetInstalledSDKLocations | |
|
1874 | ||
|
1875 | RestoreContinueOnError = WarnAndContinue | |
|
1876 | RestoreProjectStyle = PackageReference | |
|
1877 | RestoreRecursive = true | |
|
1878 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
1879 | RestoreUseCustomAfterTargets = | |
|
1880 | RootNamespace = Implab | |
|
1881 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
1882 | RunDependsOn = | |
|
1883 | RunWorkingDirectory = | |
|
1884 | SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames | |
|
1885 | SDK_HOME = /usr/lib64/jvm/java | |
|
1886 | SDK35ToolsPath = / | |
|
1887 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
1888 | SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences | |
|
1889 | SDKReferenceDirectoryRoot = /home/sergey/.local/share/Microsoft SDKs;/usr/lib/mono/xbuild/Microsoft SDKs | |
|
1890 | SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs | |
|
1891 | SDL_AUDIODRIVER = pulse | |
|
1892 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
1893 | SGenFilesOutputGroupDependsOn = | |
|
1894 | SGenShouldGenerateSerializer = true | |
|
1895 | SGenUseKeep = false | |
|
1896 | SGenUseProxyTypes = true | |
|
1897 | SHELL = /bin/bash | |
|
1898 | SHLVL = 3 | |
|
1899 | ShouldMarkCertainSDKReferencesAsRuntimeOnly = true | |
|
1900 | SignAssembly = false | |
|
1901 | SkipCopyUnchangedFiles = true | |
|
1902 | SkipImportNuGetBuildTargets = true | |
|
1903 | SkipImportNuGetProps = true | |
|
1904 | SolutionDir = *Undefined* | |
|
1905 | SolutionExt = *Undefined* | |
|
1906 | SolutionFileName = *Undefined* | |
|
1907 | SolutionName = *Undefined* | |
|
1908 | SolutionPath = *Undefined* | |
|
1909 | SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
1910 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
1911 | TargetCulture = * | |
|
1912 | TargetDeployManifestFileName = Implab.application | |
|
1913 | TargetDir = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
1914 | TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem) | |
|
1915 | TargetedSDKArchitecture = msil | |
|
1916 | TargetedSDKConfiguration = Debug | |
|
1917 | TargetExt = .dll | |
|
1918 | TargetFileName = Implab.dll | |
|
1919 | TargetFramework = netstandard2.0 | |
|
1920 | TargetFrameworkAsMSBuildRuntime = CLR2 | |
|
1921 | TargetFrameworkDirectory = | |
|
1922 | TargetFrameworkIdentifier = .NETStandard | |
|
1923 | TargetFrameworkMoniker = .NETStandard,Version=v2.0 | |
|
1924 | TargetFrameworkMonikerAssemblyAttributesPath = /tmp/.NETStandard,Version=v2.0.AssemblyAttributes.cs | |
|
1925 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
1926 | TargetFrameworks = netstandard2.0 | |
|
1927 | TargetFrameworkVersion = v2.0 | |
|
1928 | TargetName = Implab | |
|
1929 | TargetPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
1930 | TargetPlatformDisplayName = Windows 7.0 | |
|
1931 | TargetPlatformIdentifier = Windows | |
|
1932 | TargetPlatformMoniker = Windows,Version=7.0 | |
|
1933 | TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows | |
|
1934 | TargetPlatformSdkPath = | |
|
1935 | TargetPlatformVersion = 7.0 | |
|
1936 | TargetRuntime = Managed | |
|
1937 | TERM = xterm | |
|
1938 | TERM_PROGRAM = vscode | |
|
1939 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
1940 | Title = Implab library | |
|
1941 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
1942 | TreatWarningsAsErrors = false | |
|
1943 | UnmanagedRegistrationDependsOn = | |
|
1944 | UnmanagedUnregistrationDependsOn = | |
|
1945 | UseCommonOutputDirectory = false | |
|
1946 | UseHostCompilerIfAvailable = true | |
|
1947 | USER = sergey | |
|
1948 | USERNAME = sergey | |
|
1949 | UserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
1950 | UserRuntimeConfig = /home/sergey/projects/ImplabNet/Implab/runtimeconfig.template.json | |
|
1951 | UseSourcePath = true | |
|
1952 | UsingMicrosoftNETSdk = true | |
|
1953 | Utf8Output = true | |
|
1954 | ValidateRuntimeIdentifierCompatibility = false | |
|
1955 | Version = 3.0.10 | |
|
1956 | VisualStudioVersion = 15.0 | |
|
1957 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
1958 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
1959 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
1960 | VSCODE_PID = 32392 | |
|
1961 | WarningLevel = 4 | |
|
1962 | WarningsAsErrors = NU1605 | |
|
1963 | WAYLAND_DISPLAY = wayland-0 | |
|
1964 | WebReference_EnableLegacyEventingModel = false | |
|
1965 | WebReference_EnableProperties = true | |
|
1966 | WebReference_EnableSQLTypes = true | |
|
1967 | WINDOWMANAGER = /usr/bin/gnome | |
|
1968 | WMSJSProject = WJProject | |
|
1969 | WMSJSProjectDirectory = JavaScript | |
|
1970 | XAUTHLOCALHOSTNAME = chamber | |
|
1971 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
1972 | XCURSOR_THEME = DMZ | |
|
1973 | XDG_CONFIG_DIRS = /etc/xdg | |
|
1974 | XDG_CURRENT_DESKTOP = GNOME | |
|
1975 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
1976 | XDG_MENU_PREFIX = gnome- | |
|
1977 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
1978 | XDG_SEAT = seat0 | |
|
1979 | XDG_SESSION_DESKTOP = gnome | |
|
1980 | XDG_SESSION_ID = 1 | |
|
1981 | XDG_SESSION_TYPE = wayland | |
|
1982 | XDG_VTNR = 2 | |
|
1983 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
1984 | XMODIFIERS = @im=ibus | |
|
1985 | XNLSPATH = /usr/share/X11/nls | |
|
1986 | YieldDuringToolExecution = true | |
|
1987 | ||
|
1988 | Initial Items: | |
|
1989 | _ApplicationManifestFinal | |
|
1990 | bin/Debug/netstandard2.0/Native.Implab.manifest | |
|
1991 | TargetPath = Native.Implab.manifest | |
|
1992 | _DebugSymbolsIntermediatePath | |
|
1993 | obj/Debug/netstandard2.0/Implab.pdb | |
|
1994 | _DebugSymbolsOutputPath | |
|
1995 | bin/Debug/netstandard2.0/Implab.pdb | |
|
1996 | _DeploymentManifestEntryPoint | |
|
1997 | obj/Debug/netstandard2.0/Implab.dll | |
|
1998 | TargetPath = Implab.dll | |
|
1999 | _ImplicitPackageReference | |
|
2000 | NETStandard.Library | |
|
2001 | Version = 1.6.1 | |
|
2002 | IsImplicitlyDefined = true | |
|
2003 | PrivateAssets = All | |
|
2004 | Publish = true | |
|
2005 | _ImplicitPackageReferenceCheck | |
|
2006 | NETStandard.Library | |
|
2007 | Version = 1.6.1 | |
|
2008 | IsImplicitlyDefined = true | |
|
2009 | PrivateAssets = All | |
|
2010 | Publish = true | |
|
2011 | _OutputPathItem | |
|
2012 | bin/Debug/netstandard2.0/ | |
|
2013 | _ResolveComReferenceCache | |
|
2014 | obj/Debug/netstandard2.0/Implab.csproj.ResolveComReference.cache | |
|
2015 | _UnmanagedRegistrationCache | |
|
2016 | obj/Implab.csproj.UnmanagedRegistration.cache | |
|
2017 | AppConfigFileDestination | |
|
2018 | bin/Debug/netstandard2.0/Implab.dll.config | |
|
2019 | ApplicationManifest | |
|
2020 | obj/Debug/netstandard2.0/Native.Implab.manifest | |
|
2021 | TargetPath = Native.Implab.manifest | |
|
2022 | BuiltProjectOutputGroupKeyOutput | |
|
2023 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.dll | |
|
2024 | IsKeyOutput = true | |
|
2025 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
2026 | TargetPath = Implab.dll | |
|
2027 | Compile | |
|
2028 | AbstractEvent.cs | |
|
2029 | Automaton/AutomatonConst.cs | |
|
2030 | Automaton/AutomatonTransition.cs | |
|
2031 | Automaton/DFATable.cs | |
|
2032 | Automaton/IAlphabet.cs | |
|
2033 | Automaton/IAlphabetBuilder.cs | |
|
2034 | Automaton/IDFATable.cs | |
|
2035 | Automaton/IDFATableBuilder.cs | |
|
2036 | Automaton/IndexedAlphabetBase.cs | |
|
2037 | Automaton/MapAlphabet.cs | |
|
2038 | Automaton/ParserException.cs | |
|
2039 | Automaton/RegularExpressions/AltToken.cs | |
|
2040 | Automaton/RegularExpressions/BinaryToken.cs | |
|
2041 | Automaton/RegularExpressions/CatToken.cs | |
|
2042 | Automaton/RegularExpressions/EmptyToken.cs | |
|
2043 | Automaton/RegularExpressions/EndToken.cs | |
|
2044 | Automaton/RegularExpressions/EndTokenT.cs | |
|
2045 | Automaton/RegularExpressions/ITaggedDFABuilder.cs | |
|
2046 | Automaton/RegularExpressions/IVisitor.cs | |
|
2047 | Automaton/RegularExpressions/RegularDFA.cs | |
|
2048 | Automaton/RegularExpressions/RegularExpressionVisitor.cs | |
|
2049 | Automaton/RegularExpressions/RegularExpressionVisitorT.cs | |
|
2050 | Automaton/RegularExpressions/StarToken.cs | |
|
2051 | Automaton/RegularExpressions/SymbolToken.cs | |
|
2052 | Automaton/RegularExpressions/Token.cs | |
|
2053 | Components/Disposable.cs | |
|
2054 | Components/DisposablePool.cs | |
|
2055 | Components/ExecutionState.cs | |
|
2056 | Components/IAsyncComponent.cs | |
|
2057 | Components/IFactory.cs | |
|
2058 | Components/IInitializable.cs | |
|
2059 | Components/IRunnable.cs | |
|
2060 | Components/IServiceLocator.cs | |
|
2061 | Components/LazyAndWeak.cs | |
|
2062 | Components/ObjectPool.cs | |
|
2063 | Components/PollingComponent.cs | |
|
2064 | Components/RunnableComponent.cs | |
|
2065 | Components/ServiceLocator.cs | |
|
2066 | Components/StateChangeEventArgs.cs | |
|
2067 | CustomEqualityComparer.cs | |
|
2068 | Deferred.cs | |
|
2069 | Deferred`1.cs | |
|
2070 | Diagnostics/ActivityScope.cs | |
|
2071 | Diagnostics/LogicalOperation.cs | |
|
2072 | Diagnostics/LogicalOperationScope.cs | |
|
2073 | Diagnostics/SimpleTraceListener.cs | |
|
2074 | Diagnostics/Trace.cs | |
|
2075 | Diagnostics/TraceEventCodes.cs | |
|
2076 | Diagnostics/TraceSourceAttribute.cs | |
|
2077 | ExceptionHelpers.cs | |
|
2078 | Formats/ByteAlphabet.cs | |
|
2079 | Formats/CharAlphabet.cs | |
|
2080 | Formats/CharMap.cs | |
|
2081 | Formats/FastInpurScanner.cs | |
|
2082 | Formats/Grammar.cs | |
|
2083 | Formats/InputScanner.cs | |
|
2084 | Formats/Json/JsonElementContext.cs | |
|
2085 | Formats/Json/JsonElementType.cs | |
|
2086 | Formats/Json/JsonGrammar.cs | |
|
2087 | Formats/Json/JsonReader.cs | |
|
2088 | Formats/Json/JsonScanner.cs | |
|
2089 | Formats/Json/JsonStringScanner.cs | |
|
2090 | Formats/Json/JsonTextScanner.cs | |
|
2091 | Formats/Json/JsonTokenType.cs | |
|
2092 | Formats/Json/JsonWriter.cs | |
|
2093 | Formats/Json/StringTranslator.cs | |
|
2094 | IDispatcher.cs | |
|
2095 | IPromise.cs | |
|
2096 | IPromiseT.cs | |
|
2097 | IResolvable.cs | |
|
2098 | IResolvable`1.cs | |
|
2099 | Messaging/IConsumer.cs | |
|
2100 | Messaging/IProducer.cs | |
|
2101 | Messaging/ISession.cs | |
|
2102 | Parallels/AsyncQueue.cs | |
|
2103 | Parallels/BlockingQueue.cs | |
|
2104 | Parallels/DispatchPool.cs | |
|
2105 | Parallels/SharedLock.cs | |
|
2106 | Parallels/Signal.cs | |
|
2107 | Parallels/SimpleAsyncQueue.cs | |
|
2108 | Parallels/SyncContextDispatcher.cs | |
|
2109 | Parallels/ThreadPoolDispatcher.cs | |
|
2110 | Promise.cs | |
|
2111 | Promise`1.cs | |
|
2112 | PromiseActionReaction.cs | |
|
2113 | PromiseActionReaction`1.cs | |
|
2114 | PromiseAll.cs | |
|
2115 | PromiseAll`1.cs | |
|
2116 | PromiseAwaiter.cs | |
|
2117 | PromiseAwaiter`1.cs | |
|
2118 | PromiseExecutor.cs | |
|
2119 | PromiseExecutor`1.cs | |
|
2120 | PromiseExtensions.cs | |
|
2121 | PromiseFuncReaction`1.cs | |
|
2122 | PromiseFuncReaction`2.cs | |
|
2123 | PromiseHandler.cs | |
|
2124 | PromiseState.cs | |
|
2125 | PromiseTransientException.cs | |
|
2126 | RejectedPromise.cs | |
|
2127 | RejectedPromise`1.cs | |
|
2128 | ResolvedPromise.cs | |
|
2129 | ResolvedPromise`1.cs | |
|
2130 | Safe.cs | |
|
2131 | TaskHelpers.cs | |
|
2132 | Xml/JsonXmlCaseTransform.cs | |
|
2133 | Xml/JsonXmlReader.cs | |
|
2134 | Xml/JsonXmlReaderOptions.cs | |
|
2135 | Xml/JsonXmlReaderPosition.cs | |
|
2136 | Xml/SerializationHelpers.cs | |
|
2137 | Xml/SerializersPool.cs | |
|
2138 | Xml/XmlNameContext.cs | |
|
2139 | Xml/XmlSimpleAttribute.cs | |
|
2140 | Xml/XmlToJson.cs | |
|
2141 | CopyUpToDateMarker | |
|
2142 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.csproj.CopyComplete | |
|
2143 | DebugSymbolsProjectOutputGroupOutput | |
|
2144 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.pdb | |
|
2145 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.pdb | |
|
2146 | TargetPath = Implab.pdb | |
|
2147 | DeployManifest | |
|
2148 | obj/Debug/netstandard2.0/Implab.application | |
|
2149 | TargetPath = Implab.application | |
|
2150 | EmbeddedResource | |
|
2151 | Xml/json.xsl | |
|
2152 | GenerateRuntimeConfigurationFilesInputs | |
|
2153 | /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
2154 | IntermediateAssembly | |
|
2155 | obj/Debug/netstandard2.0/Implab.dll | |
|
2156 | None | |
|
2157 | Implab.nuspec | |
|
2158 | implab.snk | |
|
2159 | license.txt | |
|
2160 | Xml/json.xsl | |
|
2161 | Xml/readme.txt | |
|
2162 | PackageReference | |
|
2163 | NETStandard.Library | |
|
2164 | Version = 1.6.1 | |
|
2165 | IsImplicitlyDefined = true | |
|
2166 | PrivateAssets = All | |
|
2167 | Publish = true | |
|
2168 | PreprocessorValue | |
|
2169 | assemblyname | |
|
2170 | Value = Implab | |
|
2171 | filename | |
|
2172 | Value = Implab.csproj | |
|
2173 | fullpath | |
|
2174 | Value = /home/sergey/projects/ImplabNet/Implab | |
|
2175 | outputfilename | |
|
2176 | Value = Implab.dll | |
|
2177 | rootnamespace | |
|
2178 | Value = Implab | |
|
2179 | ProjectCapability | |
|
2180 | AllTargetOutputGroups | |
|
2181 | AssemblyReferences | |
|
2182 | BuildWindowsDesktopTarget | |
|
2183 | COMReferences | |
|
2184 | CSharp | |
|
2185 | DeclaredSourceItems | |
|
2186 | FolderPublish | |
|
2187 | GenerateDocumentationFile | |
|
2188 | LanguageService | |
|
2189 | Managed | |
|
2190 | OutputGroups | |
|
2191 | Pack | |
|
2192 | ProjectReferences | |
|
2193 | ReferencesFolder | |
|
2194 | RelativePathDerivedDefaultNamespace | |
|
2195 | SharedProjectReferences | |
|
2196 | SingleFileGenerators | |
|
2197 | UserSourceItems | |
|
2198 | VisualStudioWellKnownOutputGroups | |
|
2199 | PropertyPageSchema | |
|
2200 | /usr/lib/mono/msbuild/15.0/bin/assemblyreference.xaml | |
|
2201 | Context = ;BrowseObject | |
|
2202 | /usr/lib/mono/msbuild/15.0/bin/COMReference.xaml | |
|
2203 | Context = ;BrowseObject | |
|
2204 | /usr/lib/mono/msbuild/15.0/bin/Content.xaml | |
|
2205 | Context = File;BrowseObject | |
|
2206 | /usr/lib/mono/msbuild/15.0/bin/CSharp.BrowseObject.xaml | |
|
2207 | Context = BrowseObject | |
|
2208 | /usr/lib/mono/msbuild/15.0/bin/CSharp.ProjectItemsSchema.xaml | |
|
2209 | /usr/lib/mono/msbuild/15.0/bin/CSharp.xaml | |
|
2210 | Context = File | |
|
2211 | /usr/lib/mono/msbuild/15.0/bin/Debugger_General.xaml | |
|
2212 | Context = Project | |
|
2213 | /usr/lib/mono/msbuild/15.0/bin/EmbeddedResource.xaml | |
|
2214 | Context = File;BrowseObject | |
|
2215 | /usr/lib/mono/msbuild/15.0/bin/Folder.xaml | |
|
2216 | Context = File;BrowseObject | |
|
2217 | /usr/lib/mono/msbuild/15.0/bin/General.BrowseObject.xaml | |
|
2218 | Context = BrowseObject | |
|
2219 | /usr/lib/mono/msbuild/15.0/bin/General.xaml | |
|
2220 | Context = Project | |
|
2221 | /usr/lib/mono/msbuild/15.0/bin/General_File.xaml | |
|
2222 | Context = File | |
|
2223 | /usr/lib/mono/msbuild/15.0/bin/None.xaml | |
|
2224 | Context = File;BrowseObject | |
|
2225 | /usr/lib/mono/msbuild/15.0/bin/ProjectItemsSchema.xaml | |
|
2226 | /usr/lib/mono/msbuild/15.0/bin/ProjectReference.xaml | |
|
2227 | Context = ;BrowseObject | |
|
2228 | /usr/lib/mono/msbuild/15.0/bin/ResolvedAssemblyReference.xaml | |
|
2229 | Context = ProjectSubscriptionService;BrowseObject | |
|
2230 | /usr/lib/mono/msbuild/15.0/bin/ResolvedCOMReference.xaml | |
|
2231 | Context = ProjectSubscriptionService;BrowseObject | |
|
2232 | /usr/lib/mono/msbuild/15.0/bin/ResolvedProjectReference.xaml | |
|
2233 | Context = ProjectSubscriptionService;BrowseObject | |
|
2234 | /usr/lib/mono/msbuild/15.0/bin/SCC.xaml | |
|
2235 | Context = Invisible | |
|
2236 | /usr/lib/mono/msbuild/15.0/bin/SpecialFolder.xaml | |
|
2237 | Context = File;ProjectSubscriptionService | |
|
2238 | SupportedTargetFramework | |
|
2239 | .NETCoreApp,Version=v1.0 | |
|
2240 | DisplayName = .NET Core 1.0 | |
|
2241 | .NETCoreApp,Version=v1.1 | |
|
2242 | DisplayName = .NET Core 1.1 | |
|
2243 | .NETCoreApp,Version=v2.0 | |
|
2244 | DisplayName = .NET Core 2.0 | |
|
2245 | .NETStandard,Version=v1.0 | |
|
2246 | DisplayName = .NET Standard 1.0 | |
|
2247 | .NETStandard,Version=v1.1 | |
|
2248 | DisplayName = .NET Standard 1.1 | |
|
2249 | .NETStandard,Version=v1.2 | |
|
2250 | DisplayName = .NET Standard 1.2 | |
|
2251 | .NETStandard,Version=v1.3 | |
|
2252 | DisplayName = .NET Standard 1.3 | |
|
2253 | .NETStandard,Version=v1.4 | |
|
2254 | DisplayName = .NET Standard 1.4 | |
|
2255 | .NETStandard,Version=v1.5 | |
|
2256 | DisplayName = .NET Standard 1.5 | |
|
2257 | .NETStandard,Version=v1.6 | |
|
2258 | DisplayName = .NET Standard 1.6 | |
|
2259 | .NETStandard,Version=v2.0 | |
|
2260 | DisplayName = .NET Standard 2.0 | |
|
2261 | ||
|
2262 | Building with tools version "15.0". | |
|
2263 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
2264 | Target "_GenerateRestoreProjectPathItemsPerFramework: (TargetId:12)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
2265 | Using "ConvertToAbsolutePath" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". | |
|
2266 | Task "ConvertToAbsolutePath" (TaskId:8) | |
|
2267 | Output Property: _RestoreGraphAbsoluteProjectPaths= (TaskId:8) | |
|
2268 | Done executing task "ConvertToAbsolutePath". (TaskId:8) | |
|
2269 | Done building target "_GenerateRestoreProjectPathItemsPerFramework" in project "Implab.csproj".: (TargetId:12) | |
|
2270 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GenerateRestoreProjectPathItemsPerFramework target(s)). | |
|
2271 | Done executing task "MSBuild". (TaskId:7) | |
|
2272 | Task "RemoveDuplicates" (TaskId:9) | |
|
2273 | Done executing task "RemoveDuplicates". (TaskId:9) | |
|
2274 | Done building target "_GenerateRestoreProjectPathItems" in project "Implab.csproj".: (TargetId:11) | |
|
2275 | Target "_GetRestoreTargetFrameworksAsItems" skipped. Previously built successfully. | |
|
2276 | Target "_GenerateRestoreProjectPathWalk: (TargetId:13)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
2277 | Task "MSBuild" (TaskId:10) | |
|
2278 | Task Parameter:Targets=_GenerateRestoreProjectPathWalk (TaskId:10) | |
|
2279 | Task Parameter: | |
|
2280 | Properties= | |
|
2281 | TargetFramework=netstandard2.0 | |
|
2282 | RestoreUseCustomAfterTargets= | |
|
2283 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
2284 | BuildProjectReferences=false | |
|
2285 | ExcludeRestorePackageImports=true (TaskId:10) | |
|
2286 | Done executing task "MSBuild". (TaskId:10) | |
|
2287 | Added Item(s): _GenerateRestoreProjectPathWalkOutputs=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2288 | Task "RemoveDuplicates" (TaskId:11) | |
|
2289 | Task Parameter:Inputs=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:11) | |
|
2290 | Output Item(s): _RestoreProjectPathItems=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:11) | |
|
2291 | Done executing task "RemoveDuplicates". (TaskId:11) | |
|
2292 | Done building target "_GenerateRestoreProjectPathWalk" in project "Implab.csproj".: (TargetId:13) | |
|
2293 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GenerateRestoreProjectPathWalk target(s)). | |
|
2294 | _GetAllRestoreProjectPathItems: (TargetId:5) | |
|
2295 | Output Item(s): | |
|
2296 | _RestoreProjectPathItemsOutputs= | |
|
2297 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2298 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2299 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2300 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:5) | |
|
2301 | Done executing task "MsBuild". (TaskId:5) | |
|
2302 | Task "RemoveDuplicates" (TaskId:12) | |
|
2303 | Task Parameter: | |
|
2304 | Inputs= | |
|
2305 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2306 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2307 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2308 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:12) | |
|
2309 | Output Item(s): | |
|
2310 | _RestoreProjectPathItemsWithoutDupes= | |
|
2311 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2312 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2313 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2314 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:12) | |
|
2315 | Done executing task "RemoveDuplicates". (TaskId:12) | |
|
2316 | Task "MsBuild" (TaskId:13) | |
|
2317 | Task Parameter: | |
|
2318 | Projects= | |
|
2319 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2320 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2321 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2322 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:13) | |
|
2323 | Task Parameter:Targets=_IsProjectRestoreSupported (TaskId:13) | |
|
2324 | Task Parameter: | |
|
2325 | Properties= | |
|
2326 | RestoreUseCustomAfterTargets= | |
|
2327 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
2328 | BuildProjectReferences=false | |
|
2329 | ExcludeRestorePackageImports=true (TaskId:13) | |
|
2330 | Global Properties: (TaskId:13) | |
|
2331 | RestoreUseCustomAfterTargets= (TaskId:13) | |
|
2332 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:13) | |
|
2333 | BuildProjectReferences=false (TaskId:13) | |
|
2334 | ExcludeRestorePackageImports=true (TaskId:13) | |
|
2335 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:5) on node 1 (_IsProjectRestoreSupported target(s)). | |
|
2336 | Building with tools version "15.0". | |
|
2337 | Target "_IsProjectRestoreSupported" skipped. Previously built successfully. | |
|
2338 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_IsProjectRestoreSupported target(s)). | |
|
2339 | _GetAllRestoreProjectPathItems: (TargetId:5) | |
|
2340 | Output Item(s): | |
|
2341 | _RestoreProjectPathItems= | |
|
2342 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2343 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2344 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2345 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:13) | |
|
2346 | Done executing task "MsBuild". (TaskId:13) | |
|
2347 | Done building target "_GetAllRestoreProjectPathItems" in project "Implab.csproj".: (TargetId:5) | |
|
2348 | Target "_GenerateRestoreGraph: (TargetId:14)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "Restore" depends on it): | |
|
2349 | Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". | |
|
2350 | Task "Message" (TaskId:14) | |
|
2351 | Task Parameter:Text=Generating dg file (TaskId:14) | |
|
2352 | Task Parameter:Importance=low (TaskId:14) | |
|
2353 | Generating dg file (TaskId:14) | |
|
2354 | Done executing task "Message". (TaskId:14) | |
|
2355 | Task "Message" (TaskId:15) | |
|
2356 | Task Parameter:Text=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:15) | |
|
2357 | Task Parameter:Importance=low (TaskId:15) | |
|
2358 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:15) | |
|
2359 | Done executing task "Message". (TaskId:15) | |
|
2360 | Added Item(s): | |
|
2361 | _GenerateRestoreGraphProjectEntryInput= | |
|
2362 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2363 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2364 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2365 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2366 | Task "MsBuild" (TaskId:16) | |
|
2367 | Task Parameter: | |
|
2368 | Projects= | |
|
2369 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2370 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2371 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
2372 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:16) | |
|
2373 | Task Parameter:Targets=_GenerateRestoreGraphProjectEntry (TaskId:16) | |
|
2374 | Task Parameter: | |
|
2375 | Properties= | |
|
2376 | RestoreUseCustomAfterTargets= | |
|
2377 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
2378 | BuildProjectReferences=false | |
|
2379 | ExcludeRestorePackageImports=true (TaskId:16) | |
|
2380 | Global Properties: (TaskId:16) | |
|
2381 | RestoreUseCustomAfterTargets= (TaskId:16) | |
|
2382 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:16) | |
|
2383 | BuildProjectReferences=false (TaskId:16) | |
|
2384 | ExcludeRestorePackageImports=true (TaskId:16) | |
|
2385 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:6) on node 1 (_GenerateRestoreGraphProjectEntry target(s)). | |
|
2386 | Initial Properties: | |
|
2387 | _ = /usr/bin/msbuild | |
|
2388 | _DirectoryBuildPropsBasePath = | |
|
2389 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
2390 | _DirectoryBuildTargetsBasePath = | |
|
2391 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
2392 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
2393 | RestoreUseCustomAfterTargets=; | |
|
2394 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
2395 | BuildProjectReferences=false; | |
|
2396 | ExcludeRestorePackageImports=true; | |
|
2397 | ||
|
2398 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
2399 | _RestoreProjectFramework = netstandard2.0 | |
|
2400 | _RestoreTargetFrameworkItemsHasValues = true | |
|
2401 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
2402 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
2403 | AllowUnsafeBlocks = false | |
|
2404 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
2405 | AssemblyName = Implab | |
|
2406 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
2407 | AssemblyTitle = Implab | |
|
2408 | AUDIODRIVER = pulseaudio | |
|
2409 | Authors = Sergey Smirnov | |
|
2410 | BaseIntermediateOutputPath = obj\ | |
|
2411 | BaseOutputPath = bin\ | |
|
2412 | BuildInParallel = true | |
|
2413 | BuildOutputTargetFolder = lib | |
|
2414 | BuildProjectReferences = false | |
|
2415 | CheckForOverflowUnderflow = false | |
|
2416 | CHROME_DESKTOP = Code.desktop | |
|
2417 | COLORTERM = 1 | |
|
2418 | Company = Sergey Smirnov | |
|
2419 | Configuration = Debug | |
|
2420 | Configurations = Debug;Release | |
|
2421 | ContentTargetFolders = content;contentFiles | |
|
2422 | Copyright = 2012-2018 Sergey Smirnov | |
|
2423 | CPU = x86_64 | |
|
2424 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
2425 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CrossTargeting.targets | |
|
2426 | CSHEDIT = emacs | |
|
2427 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
2428 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
2429 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
2430 | DebugSymbols = true | |
|
2431 | DebugType = portable | |
|
2432 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
2433 | DefineConstants = TRACE | |
|
2434 | DelaySign = false | |
|
2435 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
2436 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
2437 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
2438 | ||
|
2439 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
2440 | DESKTOP_SESSION = gnome | |
|
2441 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
2442 | Deterministic = true | |
|
2443 | DisableHandlePackageFileConflicts = true | |
|
2444 | DISPLAY = :0 | |
|
2445 | ErrorReport = prompt | |
|
2446 | ExcludeRestorePackageImports = true | |
|
2447 | FileAlignment = 512 | |
|
2448 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
2449 | FROM_HEADER = | |
|
2450 | G_BROKEN_FILENAMES = 1 | |
|
2451 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
2452 | GDMSESSION = gnome | |
|
2453 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
2454 | GeneratePackageOnBuild = false | |
|
2455 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
2456 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
2457 | GJS_DEBUG_OUTPUT = stderr | |
|
2458 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
2459 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
2460 | GPG_TTY = /dev/pts/1 | |
|
2461 | HideWarningsAndErrors = false | |
|
2462 | HISTSIZE = 1000 | |
|
2463 | HOME = /home/sergey | |
|
2464 | HOST = chamber | |
|
2465 | HOSTNAME = chamber | |
|
2466 | HOSTTYPE = x86_64 | |
|
2467 | ImportByWildcardAfterMicrosoftCommonCrossTargetingTargets = true | |
|
2468 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
2469 | ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets = true | |
|
2470 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
2471 | ImportDirectoryBuildProps = true | |
|
2472 | ImportDirectoryBuildTargets = true | |
|
2473 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
2474 | ImportProjectExtensionProps = true | |
|
2475 | ImportProjectExtensionTargets = true | |
|
2476 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
2477 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
2478 | IncludeBuildOutput = true | |
|
2479 | IncludeContentInPack = true | |
|
2480 | IntermediateOutputPath = obj\Debug\ | |
|
2481 | IsCrossTargetingBuild = true | |
|
2482 | IsPackable = true | |
|
2483 | IsRestoreTargetsFileLoaded = true | |
|
2484 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
2485 | JAVA_HOME = /usr/lib64/jvm/java | |
|
2486 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
2487 | JDK_HOME = /usr/lib64/jvm/java | |
|
2488 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
2489 | LANG = en_US.UTF-8 | |
|
2490 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
2491 | LC_CTYPE = ru_RU.UTF-8 | |
|
2492 | LESS = -M -I -R | |
|
2493 | LESS_ADVANCED_PREPROCESSOR = no | |
|
2494 | LESSCLOSE = lessclose.sh %s %s | |
|
2495 | LESSKEY = /etc/lesskey.bin | |
|
2496 | LESSOPEN = lessopen.sh %s | |
|
2497 | LocalAppData = /home/sergey/.local/share | |
|
2498 | LOGNAME = sergey | |
|
2499 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
2500 | LS_OPTIONS = -N --color=tty -T 0 | |
|
2501 | MACHTYPE = x86_64-suse-linux | |
|
2502 | MAIL = /var/spool/mail/sergey | |
|
2503 | MANPATH = /usr/local/man:/usr/share/man | |
|
2504 | MicrosoftCommonPropsHasBeenImported = true | |
|
2505 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
2506 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
2507 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
2508 | MicrosoftNETBuildTasksTFM = net46 | |
|
2509 | MINICOM = -c on | |
|
2510 | MONO_GC_PARAMS = nursery-size=64m, | |
|
2511 | MORE = -sl | |
|
2512 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
2513 | MSBuildAssemblyVersion = 15.0 | |
|
2514 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
2515 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
2516 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
2517 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
2518 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
2519 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
2520 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
2521 | MSBuildLastTaskResult = true | |
|
2522 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
2523 | MSBuildNodeCount = 1 | |
|
2524 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
2525 | MSBuildProjectDefaultTargets = Build | |
|
2526 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
2527 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
2528 | MSBuildProjectExtension = .csproj | |
|
2529 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
2530 | MSBuildProjectFile = Implab.csproj | |
|
2531 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2532 | MSBuildProjectName = Implab | |
|
2533 | MSBuildRuntimeType = Mono | |
|
2534 | MSBuildRuntimeVersion = 4.0.30319 | |
|
2535 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
2536 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
2537 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
2538 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
2539 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
2540 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
2541 | MSBuildToolsVersion = 15.0 | |
|
2542 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
2543 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
2544 | NNTPSERVER = news | |
|
2545 | NoLogo = true | |
|
2546 | NoWarn = 1701;1702;1705 | |
|
2547 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
2548 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
2549 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
2550 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
2551 | NuspecOutputPath = obj\Debug\ | |
|
2552 | Optimize = false | |
|
2553 | OS = Unix | |
|
2554 | OSTYPE = linux | |
|
2555 | OutputPath = bin\Debug\ | |
|
2556 | OutputType = Library | |
|
2557 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
2558 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
2559 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
2560 | ||
|
2561 | PackageId = Implab | |
|
2562 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
2563 | PackageOutputPath = bin\Debug\ | |
|
2564 | PackageProjectUrl = https://implab.org | |
|
2565 | PackageRequireLicenseAcceptance = false | |
|
2566 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
2567 | PackageVersion = 3.0.10 | |
|
2568 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
2569 | PAGER = less | |
|
2570 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
2571 | Platform = AnyCPU | |
|
2572 | PlatformName = AnyCPU | |
|
2573 | Platforms = AnyCPU | |
|
2574 | Prefer32Bit = false | |
|
2575 | Product = Implab | |
|
2576 | PROFILEREAD = true | |
|
2577 | PWD = /home/sergey/projects/ImplabNet | |
|
2578 | PYTHONSTARTUP = /etc/pythonstart | |
|
2579 | QEMU_AUDIO_DRV = pa | |
|
2580 | QT_IM_MODULE = ibus | |
|
2581 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
2582 | RepositoryType = mercurial | |
|
2583 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
2584 | ResolveNuGetPackages = false | |
|
2585 | RestoreContinueOnError = WarnAndContinue | |
|
2586 | RestoreProjectStyle = PackageReference | |
|
2587 | RestoreRecursive = true | |
|
2588 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
2589 | RestoreUseCustomAfterTargets = | |
|
2590 | RootNamespace = Implab | |
|
2591 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
2592 | SDK_HOME = /usr/lib64/jvm/java | |
|
2593 | SDK35ToolsPath = / | |
|
2594 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
2595 | SDL_AUDIODRIVER = pulse | |
|
2596 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
2597 | SHELL = /bin/bash | |
|
2598 | SHLVL = 3 | |
|
2599 | SignAssembly = false | |
|
2600 | SkipImportNuGetBuildTargets = true | |
|
2601 | SkipImportNuGetProps = true | |
|
2602 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
2603 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
2604 | TargetFrameworks = netstandard2.0 | |
|
2605 | TERM = xterm | |
|
2606 | TERM_PROGRAM = vscode | |
|
2607 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
2608 | Title = Implab library | |
|
2609 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
2610 | TreatWarningsAsErrors = false | |
|
2611 | USER = sergey | |
|
2612 | USERNAME = sergey | |
|
2613 | UsingMicrosoftNETSdk = true | |
|
2614 | ValidateRuntimeIdentifierCompatibility = false | |
|
2615 | Version = 3.0.10 | |
|
2616 | VisualStudioVersion = 15.0 | |
|
2617 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
2618 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
2619 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
2620 | VSCODE_PID = 32392 | |
|
2621 | WarningLevel = 4 | |
|
2622 | WarningsAsErrors = NU1605 | |
|
2623 | WAYLAND_DISPLAY = wayland-0 | |
|
2624 | WINDOWMANAGER = /usr/bin/gnome | |
|
2625 | WMSJSProject = WJProject | |
|
2626 | WMSJSProjectDirectory = JavaScript | |
|
2627 | XAUTHLOCALHOSTNAME = chamber | |
|
2628 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
2629 | XCURSOR_THEME = DMZ | |
|
2630 | XDG_CONFIG_DIRS = /etc/xdg | |
|
2631 | XDG_CURRENT_DESKTOP = GNOME | |
|
2632 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
2633 | XDG_MENU_PREFIX = gnome- | |
|
2634 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
2635 | XDG_SEAT = seat0 | |
|
2636 | XDG_SESSION_DESKTOP = gnome | |
|
2637 | XDG_SESSION_ID = 1 | |
|
2638 | XDG_SESSION_TYPE = wayland | |
|
2639 | XDG_VTNR = 2 | |
|
2640 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
2641 | XMODIFIERS = @im=ibus | |
|
2642 | XNLSPATH = /usr/share/X11/nls | |
|
2643 | ||
|
2644 | Initial Items: | |
|
2645 | _GenerateRestoreProjectPathWalkOutputs | |
|
2646 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2647 | _RestoreProjectPathItems | |
|
2648 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2649 | _RestoreTargetFrameworkItems | |
|
2650 | netstandard2.0 | |
|
2651 | _RestoreTargetFrameworksOutputFiltered | |
|
2652 | netstandard2.0 | |
|
2653 | _ValidProjectsForRestore | |
|
2654 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2655 | EmbeddedResource | |
|
2656 | Xml/json.xsl | |
|
2657 | ProjectCapability | |
|
2658 | Pack | |
|
2659 | SupportedTargetFramework | |
|
2660 | .NETCoreApp,Version=v1.0 | |
|
2661 | DisplayName = .NET Core 1.0 | |
|
2662 | .NETCoreApp,Version=v1.1 | |
|
2663 | DisplayName = .NET Core 1.1 | |
|
2664 | .NETCoreApp,Version=v2.0 | |
|
2665 | DisplayName = .NET Core 2.0 | |
|
2666 | .NETStandard,Version=v1.0 | |
|
2667 | DisplayName = .NET Standard 1.0 | |
|
2668 | .NETStandard,Version=v1.1 | |
|
2669 | DisplayName = .NET Standard 1.1 | |
|
2670 | .NETStandard,Version=v1.2 | |
|
2671 | DisplayName = .NET Standard 1.2 | |
|
2672 | .NETStandard,Version=v1.3 | |
|
2673 | DisplayName = .NET Standard 1.3 | |
|
2674 | .NETStandard,Version=v1.4 | |
|
2675 | DisplayName = .NET Standard 1.4 | |
|
2676 | .NETStandard,Version=v1.5 | |
|
2677 | DisplayName = .NET Standard 1.5 | |
|
2678 | .NETStandard,Version=v1.6 | |
|
2679 | DisplayName = .NET Standard 1.6 | |
|
2680 | .NETStandard,Version=v2.0 | |
|
2681 | DisplayName = .NET Standard 2.0 | |
|
2682 | ||
|
2683 | Building with tools version "15.0". | |
|
2684 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
2685 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
2686 | Target "_GenerateRestoreSpecs: (TargetId:15)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreGraphProjectEntry" depends on it): | |
|
2687 | Task "Message" (TaskId:17) | |
|
2688 | Task Parameter:Text=Restore entry point /home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:17) | |
|
2689 | Task Parameter:Importance=low (TaskId:17) | |
|
2690 | Restore entry point /home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:17) | |
|
2691 | Done executing task "Message". (TaskId:17) | |
|
2692 | Added Item(s): | |
|
2693 | _RestoreGraphEntry= | |
|
2694 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
2695 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
2696 | Type=RestoreSpec | |
|
2697 | Done building target "_GenerateRestoreSpecs" in project "Implab.csproj".: (TargetId:15) | |
|
2698 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
2699 | Target "_GetRestoreSettingsOverrides: (TargetId:16)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreSettings" depends on it): | |
|
2700 | Task "MsBuild" skipped, due to false condition; ( '$(RestorePackagesPath)' != '' ) was evaluated as ( '' != '' ). | |
|
2701 | Task "MsBuild" skipped, due to false condition; ( '$(RestoreSources)' != '' ) was evaluated as ( '' != '' ). | |
|
2702 | Task "MsBuild" skipped, due to false condition; ( '$(RestoreFallbackFolders)' != '' ) was evaluated as ( '' != '' ). | |
|
2703 | Done building target "_GetRestoreSettingsOverrides" in project "Implab.csproj".: (TargetId:16) | |
|
2704 | Target "_GetRestoreTargetFrameworksAsItems" skipped. Previously built successfully. | |
|
2705 | Target "_GetRestoreSettings: (TargetId:17)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateDotnetCliToolReferenceSpecs" depends on it): | |
|
2706 | Task "MSBuild" (TaskId:18) | |
|
2707 | Task Parameter:Projects=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:18) | |
|
2708 | Task Parameter:Targets=_GetRestoreSettingsPerFramework (TaskId:18) | |
|
2709 | Task Parameter: | |
|
2710 | Properties= | |
|
2711 | TargetFramework=netstandard2.0 | |
|
2712 | RestoreUseCustomAfterTargets= | |
|
2713 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
2714 | BuildProjectReferences=false | |
|
2715 | ExcludeRestorePackageImports=true (TaskId:18) | |
|
2716 | Global Properties: (TaskId:18) | |
|
2717 | TargetFramework=netstandard2.0 (TaskId:18) | |
|
2718 | RestoreUseCustomAfterTargets= (TaskId:18) | |
|
2719 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:18) | |
|
2720 | BuildProjectReferences=false (TaskId:18) | |
|
2721 | ExcludeRestorePackageImports=true (TaskId:18) | |
|
2722 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:6) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:7) on node 1 (_GetRestoreSettingsPerFramework target(s)). | |
|
2723 | Initial Properties: | |
|
2724 | _ = /usr/bin/msbuild | |
|
2725 | _ComputeExcludeFromPublishPackageReferences = true | |
|
2726 | _ConfigurationNameTmp = Debug | |
|
2727 | _DebugFileExt = .pdb | |
|
2728 | _DebugSymbolsProduced = true | |
|
2729 | _DefaultUserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
2730 | _DeploymentApplicationManifestIdentity = Native.Implab | |
|
2731 | _DeploymentBuiltUpdateInterval = 0 | |
|
2732 | _DeploymentBuiltUpdateIntervalUnits = Days | |
|
2733 | _DeploymentDeployManifestIdentity = Implab.application | |
|
2734 | _DeploymentFileMappingExtension = | |
|
2735 | _DeploymentTargetApplicationManifestFileName = Native.Implab.manifest | |
|
2736 | _DeploymentUrl = | |
|
2737 | _DirectoryBuildPropsBasePath = | |
|
2738 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
2739 | _DirectoryBuildTargetsBasePath = | |
|
2740 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
2741 | _DocumentationFileProduced = false | |
|
2742 | _DotNetAppHostExecutableName = apphost | |
|
2743 | _DotNetHostExecutableName = dotnet | |
|
2744 | _DotNetHostFxrLibraryName = libhostfxr.so | |
|
2745 | _DotNetHostPolicyLibraryName = libhostpolicy.so | |
|
2746 | _FrameworkIdentifierForImplicitDefine = NETSTANDARD | |
|
2747 | _FrameworkVersionForImplicitDefine = 2_0 | |
|
2748 | _GenerateBindingRedirectsIntermediateAppConfig = obj\Debug\netstandard2.0\Implab.dll.config | |
|
2749 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
2750 | RestoreUseCustomAfterTargets=; | |
|
2751 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
2752 | BuildProjectReferences=false; | |
|
2753 | ExcludeRestorePackageImports=true; | |
|
2754 | ||
|
2755 | _GetChildProjectCopyToOutputDirectoryItems = true | |
|
2756 | _GetChildProjectCopyToPublishDirectoryItems = true | |
|
2757 | _ImplicitPackageName = NETStandard.Library | |
|
2758 | _IsNETCoreOrNETStandard = true | |
|
2759 | _NativeLibraryExtension = .so | |
|
2760 | _NativeLibraryPrefix = lib | |
|
2761 | _NugetFallbackFolder = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../../NuGetFallbackFolder | |
|
2762 | _NugetTargetMonikerAndRID = .NETStandard,Version=v2.0 | |
|
2763 | _OriginalConfiguration = Debug | |
|
2764 | _OriginalPlatform = AnyCPU | |
|
2765 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
2766 | _ProjectDefaultTargets = Build | |
|
2767 | _ResolveReferenceDependencies = false | |
|
2768 | _RestoreGraphAbsoluteProjectPaths = | |
|
2769 | _SGenDllCreated = false | |
|
2770 | _SGenDllName = Implab.XmlSerializers.dll | |
|
2771 | _SGenGenerateSerializationAssembliesConfig = Off | |
|
2772 | _ShortFrameworkIdentifier = netstandard | |
|
2773 | _ShortFrameworkVersion = 2.0 | |
|
2774 | _TargetFrameworkDirectories = | |
|
2775 | _TargetFrameworkVersionWithoutV = 2.0 | |
|
2776 | _UsingDefaultForHasRuntimeOutput = true | |
|
2777 | _UsingDefaultPlatformTarget = true | |
|
2778 | AddAdditionalExplicitAssemblyReferences = false | |
|
2779 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
2780 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
2781 | AllowedReferenceAssemblyFileExtensions = | |
|
2782 | .winmd; | |
|
2783 | .dll; | |
|
2784 | .exe | |
|
2785 | ||
|
2786 | AllowedReferenceRelatedDebugFileExtensions = | |
|
2787 | .pdb; | |
|
2788 | .dll.mdb; | |
|
2789 | .exe.mdb | |
|
2790 | ||
|
2791 | AllowedReferenceRelatedFileExtensions = | |
|
2792 | ||
|
2793 | .pdb; | |
|
2794 | .dll.mdb; | |
|
2795 | .exe.mdb | |
|
2796 | ; | |
|
2797 | .xml; | |
|
2798 | .pri; | |
|
2799 | .dll.config; | |
|
2800 | .exe.config | |
|
2801 | ||
|
2802 | AllowUnsafeBlocks = false | |
|
2803 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
2804 | AlwaysUseNumericalSuffixInItemNames = true | |
|
2805 | AppDesignerFolder = Properties | |
|
2806 | AppendRuntimeIdentifierToOutputPath = true | |
|
2807 | AppendTargetFrameworkToOutputPath = true | |
|
2808 | AssemblyFoldersConfigFile = /usr/lib/mono/msbuild/15.0/bin/AssemblyFolders.config | |
|
2809 | AssemblyFoldersSuffix = AssemblyFoldersEx | |
|
2810 | AssemblyName = Implab | |
|
2811 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
2812 | AssemblyTitle = Implab | |
|
2813 | AssetTargetFallback = ;net461 | |
|
2814 | AssignTargetPathsDependsOn = | |
|
2815 | AUDIODRIVER = pulseaudio | |
|
2816 | Authors = Sergey Smirnov | |
|
2817 | AutoUnifyAssemblyReferences = true | |
|
2818 | AvailablePlatforms = Any CPU,x86,x64 | |
|
2819 | BaseIntermediateOutputPath = obj\ | |
|
2820 | BaseOutputPath = bin\ | |
|
2821 | BuildCompileAction = Build | |
|
2822 | BuildDependsOn = | |
|
2823 | BeforeBuild; | |
|
2824 | CoreBuild; | |
|
2825 | AfterBuild | |
|
2826 | ||
|
2827 | BuildGenerateSourcesAction = Build | |
|
2828 | BuildingProject = false | |
|
2829 | BuildInParallel = true | |
|
2830 | BuildLinkAction = Build | |
|
2831 | BuildOutputTargetFolder = lib | |
|
2832 | BuildProjectReferences = false | |
|
2833 | BuiltProjectOutputGroupDependsOn = PrepareForBuild | |
|
2834 | CheckForOverflowUnderflow = false | |
|
2835 | CHROME_DESKTOP = Code.desktop | |
|
2836 | CleanDependsOn = | |
|
2837 | BeforeClean; | |
|
2838 | UnmanagedUnregistration; | |
|
2839 | CoreClean; | |
|
2840 | CleanReferencedProjects; | |
|
2841 | CleanPublishFolder; | |
|
2842 | AfterClean | |
|
2843 | ||
|
2844 | CleanFile = Implab.csproj.FileListAbsolute.txt | |
|
2845 | CodeAnalysisTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/CodeAnalysis/Microsoft.CodeAnalysis.targets | |
|
2846 | COLORTERM = 1 | |
|
2847 | CommonMonoTargetsPath = Microsoft.Common.Mono.targets | |
|
2848 | CommonTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets | |
|
2849 | CommonXamlResourcesDirectory = /usr/lib/mono/msbuild/15.0/bin/ | |
|
2850 | Company = Sergey Smirnov | |
|
2851 | CompileDependsOn = | |
|
2852 | ResolveReferences; | |
|
2853 | ResolveKeySource; | |
|
2854 | SetWin32ManifestProperties; | |
|
2855 | FindReferenceAssembliesForReferences; | |
|
2856 | _GenerateCompileInputs; | |
|
2857 | BeforeCompile; | |
|
2858 | _TimeStampBeforeCompile; | |
|
2859 | _GenerateCompileDependencyCache; | |
|
2860 | CoreCompile; | |
|
2861 | _TimeStampAfterCompile; | |
|
2862 | AfterCompile; | |
|
2863 | ||
|
2864 | CompileLicxFilesDependsOn = | |
|
2865 | ComputeIntermediateSatelliteAssembliesDependsOn = | |
|
2866 | CreateManifestResourceNames | |
|
2867 | ||
|
2868 | ComReferenceExecuteAsTool = false | |
|
2869 | ComReferenceNoClassMembers = false | |
|
2870 | Configuration = Debug | |
|
2871 | ConfigurationName = Debug | |
|
2872 | Configurations = Debug;Release | |
|
2873 | ConsiderPlatformAsProcessorArchitecture = true | |
|
2874 | ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
2875 | ContentPreprocessorOutputDirectory = obj\Debug\netstandard2.0\NuGet\ | |
|
2876 | ContentTargetFolders = content;contentFiles | |
|
2877 | ContinueOnError = false | |
|
2878 | CopyLocalLockFileAssemblies = false | |
|
2879 | Copyright = 2012-2018 Sergey Smirnov | |
|
2880 | CoreBuildDependsOn = | |
|
2881 | ||
|
2882 | BuildOnlySettings; | |
|
2883 | PrepareForBuild; | |
|
2884 | PreBuildEvent; | |
|
2885 | ResolveReferences; | |
|
2886 | PrepareResources; | |
|
2887 | ResolveKeySource; | |
|
2888 | Compile; | |
|
2889 | ExportWindowsMDFile; | |
|
2890 | UnmanagedUnregistration; | |
|
2891 | GenerateSerializationAssemblies; | |
|
2892 | CreateSatelliteAssemblies; | |
|
2893 | GenerateManifests; | |
|
2894 | GetTargetPath; | |
|
2895 | PrepareForRun; | |
|
2896 | UnmanagedRegistration; | |
|
2897 | IncrementalClean; | |
|
2898 | PostBuildEvent | |
|
2899 | ; | |
|
2900 | GenerateBuildDependencyFile; | |
|
2901 | GenerateBuildRuntimeConfigurationFiles | |
|
2902 | ||
|
2903 | CoreCleanDependsOn = | |
|
2904 | CoreCompileDependsOn = _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet | |
|
2905 | CoreResGenDependsOn = FindReferenceAssembliesForReferences | |
|
2906 | CPU = x86_64 | |
|
2907 | CreateCustomManifestResourceNamesDependsOn = | |
|
2908 | CreateHardLinksForCopyAdditionalFilesIfPossible = false | |
|
2909 | CreateManifestResourceNamesDependsOn = | |
|
2910 | CreateSatelliteAssembliesDependsOn = | |
|
2911 | ||
|
2912 | _GenerateSatelliteAssemblyInputs; | |
|
2913 | ComputeIntermediateSatelliteAssemblies; | |
|
2914 | GenerateSatelliteAssemblies | |
|
2915 | ; | |
|
2916 | CoreGenerateSatelliteAssemblies | |
|
2917 | ||
|
2918 | CreateSymbolicLinksForCopyAdditionalFilesIfPossible = false | |
|
2919 | CscToolPath = /usr/lib/mono/4.5/ | |
|
2920 | CSharpCoreTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets | |
|
2921 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
2922 | CSharpMonoTargetsPath = Microsoft.CSharp.Mono.targets | |
|
2923 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets | |
|
2924 | CSHEDIT = emacs | |
|
2925 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
2926 | CustomAfterMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.targets | |
|
2927 | CustomAfterMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.CSharp.targets | |
|
2928 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
2929 | CustomBeforeMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.targets | |
|
2930 | CustomBeforeMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.CSharp.targets | |
|
2931 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
2932 | DebugSymbols = true | |
|
2933 | DebugSymbolsProjectOutputGroupDependsOn = | |
|
2934 | DebugType = portable | |
|
2935 | DefaultCopyToPublishDirectoryMetadata = true | |
|
2936 | DefaultExcludesInProjectFolder = ;**/.*/** | |
|
2937 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
2938 | DefaultItemExcludes = ;bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;packages/** | |
|
2939 | DefaultLanguageSourceExtension = .cs | |
|
2940 | DefaultProjectTypeGuid = {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
|
2941 | DefineCommonCapabilities = true | |
|
2942 | DefineCommonItemSchemas = true | |
|
2943 | DefineCommonReferenceSchemas = true | |
|
2944 | DefineConstants = TRACE;DEBUG;NETSTANDARD2_0 | |
|
2945 | DelaySign = | |
|
2946 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
2947 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
2948 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
2949 | ||
|
2950 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
2951 | DesignTimeAutoUnify = true | |
|
2952 | DesignTimeResolveAssemblyReferencesDependsOn = | |
|
2953 | GetFrameworkPaths; | |
|
2954 | GetReferenceAssemblyPaths; | |
|
2955 | ResolveReferences | |
|
2956 | ||
|
2957 | DESKTOP_SESSION = gnome | |
|
2958 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
2959 | Deterministic = true | |
|
2960 | DevEnvDir = *Undefined* | |
|
2961 | DisableHandlePackageFileConflicts = true | |
|
2962 | DisableStandardFrameworkResolution = true | |
|
2963 | DISPLAY = :0 | |
|
2964 | DocumentationFile = | |
|
2965 | DocumentationProjectOutputGroupDependsOn = | |
|
2966 | EmbeddedWin32Manifest = | |
|
2967 | EmitAssetsLogMessages = true | |
|
2968 | EmitsDependencyDiagnosticMessages = | |
|
2969 | ReportAssetsLogMessages; | |
|
2970 | ||
|
2971 | RunResolvePackageDependencies; | |
|
2972 | ||
|
2973 | ||
|
2974 | ||
|
2975 | EnableDefaultCompileItems = true | |
|
2976 | EnableDefaultEmbeddedResourceItems = true | |
|
2977 | EnableDefaultItems = true | |
|
2978 | EnableDefaultNoneItems = true | |
|
2979 | EnableFrameworkPathOverride = false | |
|
2980 | ErrorReport = prompt | |
|
2981 | ExcludeRestorePackageImports = true | |
|
2982 | ExecuteAsTool = false | |
|
2983 | ExpandSDKAllowedReferenceExtensions = | |
|
2984 | .winmd; | |
|
2985 | .dll | |
|
2986 | ||
|
2987 | ExpandSDKReferencesDependsOn = | |
|
2988 | ResolveSDKReferences | |
|
2989 | ||
|
2990 | FileAlignment = 512 | |
|
2991 | FilterDeniedAssemblies = false | |
|
2992 | FindInvalidProjectReferencesDependsOn = | |
|
2993 | GetReferenceTargetPlatformMonikers | |
|
2994 | ||
|
2995 | Framework20Dir = @(_TargetFramework20DirectoryItem) | |
|
2996 | Framework30Dir = @(_TargetFramework30DirectoryItem) | |
|
2997 | Framework35Dir = @(_TargetFramework35DirectoryItem) | |
|
2998 | Framework40Dir = @(_TargetFramework40DirectoryItem) | |
|
2999 | FrameworkDir = @(_TargetFramework20DirectoryItem) | |
|
3000 | FrameworkPathOverride = | |
|
3001 | FrameworkRegistryBase = Software\Microsoft\.NETStandard | |
|
3002 | FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem) | |
|
3003 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
3004 | FROM_HEADER = | |
|
3005 | FullReferenceAssemblyNames = Full | |
|
3006 | G_BROKEN_FILENAMES = 1 | |
|
3007 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
3008 | GDMSESSION = gnome | |
|
3009 | GenerateAssemblyCompanyAttribute = true | |
|
3010 | GenerateAssemblyConfigurationAttribute = true | |
|
3011 | GenerateAssemblyCopyrightAttribute = true | |
|
3012 | GenerateAssemblyDescriptionAttribute = true | |
|
3013 | GenerateAssemblyFileVersionAttribute = true | |
|
3014 | GenerateAssemblyInfo = true | |
|
3015 | GenerateAssemblyInformationalVersionAttribute = true | |
|
3016 | GenerateAssemblyProductAttribute = true | |
|
3017 | GenerateAssemblyTitleAttribute = true | |
|
3018 | GenerateAssemblyVersionAttribute = true | |
|
3019 | GeneratedAssemblyInfoFile = obj\Debug\netstandard2.0\Implab.AssemblyInfo.cs | |
|
3020 | GenerateDependencyFile = true | |
|
3021 | GenerateDocumentationFile = false | |
|
3022 | GenerateManifestsDependsOn = | |
|
3023 | GenerateNeutralResourcesLanguageAttribute = true | |
|
3024 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
3025 | GeneratePackageOnBuild = false | |
|
3026 | GenerateResourceMSBuildArchitecture = CurrentArchitecture | |
|
3027 | GenerateResourceMSBuildRuntime = CurrentRuntime | |
|
3028 | GenerateSerializationAssemblies = Off | |
|
3029 | GenerateTargetFrameworkAttribute = true | |
|
3030 | GetCopyToOutputDirectoryItemsDependsOn = | |
|
3031 | AssignTargetPaths; | |
|
3032 | _SplitProjectReferencesByFileExistence; | |
|
3033 | _GetProjectReferenceTargetFrameworkProperties | |
|
3034 | ||
|
3035 | GetFrameworkPathsDependsOn = | |
|
3036 | GetTargetPathDependsOn = | |
|
3037 | GetTargetPathWithTargetPlatformMonikerDependsOn = | |
|
3038 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
3039 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
3040 | GJS_DEBUG_OUTPUT = stderr | |
|
3041 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
3042 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
3043 | GPG_TTY = /dev/pts/1 | |
|
3044 | HasRuntimeOutput = | |
|
3045 | HideWarningsAndErrors = false | |
|
3046 | HISTSIZE = 1000 | |
|
3047 | HOME = /home/sergey | |
|
3048 | HOST = chamber | |
|
3049 | HOSTNAME = chamber | |
|
3050 | HOSTTYPE = x86_64 | |
|
3051 | ImplicitConfigurationDefine = DEBUG | |
|
3052 | ImplicitFrameworkDefine = NETSTANDARD2_0 | |
|
3053 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
3054 | ImportByWildcardAfterMicrosoftCommonTargets = true | |
|
3055 | ImportByWildcardAfterMicrosoftCSharpTargets = true | |
|
3056 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
3057 | ImportByWildcardBeforeMicrosoftCommonTargets = true | |
|
3058 | ImportByWildcardBeforeMicrosoftCSharpTargets = true | |
|
3059 | ImportDirectoryBuildProps = true | |
|
3060 | ImportDirectoryBuildTargets = true | |
|
3061 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
3062 | ImportProjectExtensionProps = true | |
|
3063 | ImportProjectExtensionTargets = true | |
|
3064 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
3065 | ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true | |
|
3066 | ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true | |
|
3067 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
3068 | ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true | |
|
3069 | ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true | |
|
3070 | IncludeBuildOutput = true | |
|
3071 | IncludeContentInPack = true | |
|
3072 | IncludeMainProjectInDepsFile = true | |
|
3073 | IntermediateOutputPath = obj\Debug\netstandard2.0\ | |
|
3074 | IsInnerBuild = true | |
|
3075 | IsPackable = true | |
|
3076 | IsPublishable = true | |
|
3077 | IsRestoreTargetsFileLoaded = true | |
|
3078 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
3079 | JAVA_HOME = /usr/lib64/jvm/java | |
|
3080 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
3081 | JDK_HOME = /usr/lib64/jvm/java | |
|
3082 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
3083 | LANG = en_US.UTF-8 | |
|
3084 | Language = C# | |
|
3085 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
3086 | LC_CTYPE = ru_RU.UTF-8 | |
|
3087 | LESS = -M -I -R | |
|
3088 | LESS_ADVANCED_PREPROCESSOR = no | |
|
3089 | LESSCLOSE = lessclose.sh %s %s | |
|
3090 | LESSKEY = /etc/lesskey.bin | |
|
3091 | LESSOPEN = lessopen.sh %s | |
|
3092 | LocalAppData = /home/sergey/.local/share | |
|
3093 | LOGNAME = sergey | |
|
3094 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
3095 | LS_OPTIONS = -N --color=tty -T 0 | |
|
3096 | MACHTYPE = x86_64-suse-linux | |
|
3097 | MAIL = /var/spool/mail/sergey | |
|
3098 | MANPATH = /usr/local/man:/usr/share/man | |
|
3099 | MaxTargetPath = 100 | |
|
3100 | MicrosoftCommonPropsHasBeenImported = true | |
|
3101 | MicrosoftNETBuildExtensionsTargets = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets | |
|
3102 | MicrosoftNETBuildExtensionsTasksAssembly = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/tools/net46/Microsoft.NET.Build.Extensions.Tasks.dll | |
|
3103 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
3104 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
3105 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
3106 | MicrosoftNETBuildTasksTFM = net46 | |
|
3107 | MINICOM = -c on | |
|
3108 | MONO_GC_PARAMS = nursery-size=64m, | |
|
3109 | MORE = -sl | |
|
3110 | MsAppxPackageTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/AppxPackage/Microsoft.AppXPackage.Targets | |
|
3111 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
3112 | MSBuildAssemblyVersion = 15.0 | |
|
3113 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
3114 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
3115 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
3116 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
3117 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
3118 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
3119 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
3120 | MSBuildLastTaskResult = true | |
|
3121 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
3122 | MSBuildNodeCount = 1 | |
|
3123 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
3124 | MSBuildProjectDefaultTargets = Build | |
|
3125 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
3126 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
3127 | MSBuildProjectExtension = .csproj | |
|
3128 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
3129 | MSBuildProjectFile = Implab.csproj | |
|
3130 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3131 | MSBuildProjectName = Implab | |
|
3132 | MSBuildRuntimeType = Mono | |
|
3133 | MSBuildRuntimeVersion = 4.0.30319 | |
|
3134 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
3135 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
3136 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
3137 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
3138 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
3139 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
3140 | MSBuildToolsVersion = 15.0 | |
|
3141 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
3142 | MsTestToolsTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/TeamTest/Microsoft.TeamTest.targets | |
|
3143 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
3144 | NETStandardImplicitPackageVersion = 1.6.1 | |
|
3145 | NETStandardMaximumVersion = | |
|
3146 | NNTPSERVER = news | |
|
3147 | NoCompilerStandardLib = true | |
|
3148 | NoLogo = true | |
|
3149 | NoStdLib = true | |
|
3150 | NoWarn = 1701;1702;1705 | |
|
3151 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
3152 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
3153 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
3154 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
3155 | NuGetTargetMoniker = .NETStandard,Version=v2.0 | |
|
3156 | NuGetTargets = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.targets | |
|
3157 | NuspecOutputPath = obj\Debug\ | |
|
3158 | Optimize = false | |
|
3159 | OS = Unix | |
|
3160 | OSTYPE = linux | |
|
3161 | OutDir = bin\Debug\netstandard2.0\ | |
|
3162 | OutputPath = bin\Debug\netstandard2.0\ | |
|
3163 | OutputType = Library | |
|
3164 | OverwriteReadOnlyFiles = false | |
|
3165 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
3166 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
3167 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
3168 | ||
|
3169 | PackageId = Implab | |
|
3170 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
3171 | PackageOutputPath = bin\Debug\ | |
|
3172 | PackageProjectUrl = https://implab.org | |
|
3173 | PackageRequireLicenseAcceptance = false | |
|
3174 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
3175 | PackageVersion = 3.0.10 | |
|
3176 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
3177 | PAGER = less | |
|
3178 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
3179 | Platform = AnyCPU | |
|
3180 | PlatformName = AnyCPU | |
|
3181 | Platforms = AnyCPU | |
|
3182 | PlatformTargetAsMSBuildArchitecture = CurrentArchitecture | |
|
3183 | PlatformTargetAsMSBuildArchitectureExplicitlySet = false | |
|
3184 | PostBuildEventDependsOn = | |
|
3185 | PreBuildEventDependsOn = | |
|
3186 | Prefer32Bit = false | |
|
3187 | PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata | |
|
3188 | PrepareForRunDependsOn = | |
|
3189 | CopyFilesToOutputDirectory | |
|
3190 | ||
|
3191 | PrepareProjectReferencesDependsOn = | |
|
3192 | AssignProjectConfiguration; | |
|
3193 | _SplitProjectReferencesByFileExistence; | |
|
3194 | _GetProjectReferenceTargetFrameworkProperties | |
|
3195 | ||
|
3196 | PrepareResourceNamesDependsOn = | |
|
3197 | AssignTargetPaths; | |
|
3198 | SplitResourcesByCulture; | |
|
3199 | CreateManifestResourceNames; | |
|
3200 | CreateCustomManifestResourceNames | |
|
3201 | ||
|
3202 | PrepareResourcesDependsOn = | |
|
3203 | ResolvePackageDependenciesForBuild; | |
|
3204 | _HandlePackageFileConflicts; | |
|
3205 | ||
|
3206 | PrepareResourceNames; | |
|
3207 | ResGen; | |
|
3208 | CompileLicxFiles | |
|
3209 | ||
|
3210 | ||
|
3211 | ProcessorArchitecture = msil | |
|
3212 | ProcessorArchitectureAsPlatform = AnyCPU | |
|
3213 | ProduceOnlyPreprocessorFilesInBuildTask = true | |
|
3214 | ProduceReferenceAssembly = false | |
|
3215 | Product = Implab | |
|
3216 | PROFILEREAD = true | |
|
3217 | ProjectAssetsFile = /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
3218 | ProjectDepsFileName = Implab.deps.json | |
|
3219 | ProjectDepsFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.deps.json | |
|
3220 | ProjectDesignTimeAssemblyResolutionSearchPaths = | |
|
3221 | {CandidateAssemblyFiles}; | |
|
3222 | ; | |
|
3223 | {HintPathFromItem}; | |
|
3224 | {TargetFrameworkDirectory}; | |
|
3225 | {Registry:Software\Microsoft\.NETStandard,v2.0,AssemblyFoldersEx}; | |
|
3226 | {RawFileName}; | |
|
3227 | /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
3228 | ||
|
3229 | ProjectDir = /home/sergey/projects/ImplabNet/Implab/ | |
|
3230 | ProjectExt = .csproj | |
|
3231 | ProjectFileName = Implab.csproj | |
|
3232 | ProjectFlavor = Client | |
|
3233 | ProjectName = Implab | |
|
3234 | ProjectPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3235 | ProjectRuntimeConfigDevFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.dev.json | |
|
3236 | ProjectRuntimeConfigFileName = Implab.runtimeconfig.json | |
|
3237 | ProjectRuntimeConfigFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.json | |
|
3238 | PublishableProject = | |
|
3239 | PublishBuildDependsOn = | |
|
3240 | BuildOnlySettings; | |
|
3241 | PrepareForBuild; | |
|
3242 | ResolveReferences; | |
|
3243 | PrepareResources; | |
|
3244 | ResolveKeySource; | |
|
3245 | GenerateSerializationAssemblies; | |
|
3246 | CreateSatelliteAssemblies; | |
|
3247 | ||
|
3248 | PublishDependsOn = | |
|
3249 | _DeploymentUnpublishable | |
|
3250 | ||
|
3251 | PublishDir = bin\Debug\netstandard2.0\publish\ | |
|
3252 | PublishDirName = publish | |
|
3253 | PublishDocumentationFile = true | |
|
3254 | PublishDocumentationFiles = true | |
|
3255 | PublishOnlyDependsOn = | |
|
3256 | SetGenerateManifests; | |
|
3257 | PublishBuild; | |
|
3258 | BeforePublish; | |
|
3259 | GenerateManifests; | |
|
3260 | CopyFilesToOutputDirectory; | |
|
3261 | _CopyFilesToPublishFolder; | |
|
3262 | _DeploymentGenerateBootstrapper; | |
|
3263 | ResolveKeySource; | |
|
3264 | _DeploymentSignClickOnceDeployment; | |
|
3265 | AfterPublish | |
|
3266 | ||
|
3267 | PublishReferencesDocumentationFiles = true | |
|
3268 | PWD = /home/sergey/projects/ImplabNet | |
|
3269 | PYTHONSTARTUP = /etc/pythonstart | |
|
3270 | QEMU_AUDIO_DRV = pa | |
|
3271 | QT_IM_MODULE = ibus | |
|
3272 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
3273 | RebuildDependsOn = | |
|
3274 | BeforeRebuild; | |
|
3275 | Clean; | |
|
3276 | Build; | |
|
3277 | AfterRebuild; | |
|
3278 | ||
|
3279 | RefAssembliesFolderName = refs | |
|
3280 | ReportingServicesTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/ReportingServices/Microsoft.ReportingServices.targets | |
|
3281 | RepositoryType = mercurial | |
|
3282 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
3283 | ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen | |
|
3284 | ResGenExecuteAsTool = false | |
|
3285 | ResolveAssemblyReferencesDependsOn = | |
|
3286 | ||
|
3287 | GetFrameworkPaths; | |
|
3288 | GetReferenceAssemblyPaths; | |
|
3289 | PrepareForBuild; | |
|
3290 | ResolveSDKReferences; | |
|
3291 | ExpandSDKReferences; | |
|
3292 | ; | |
|
3293 | ResolvePackageDependenciesForBuild; | |
|
3294 | _HandlePackageFileConflicts; | |
|
3295 | ||
|
3296 | ResolveNuGetPackages = false | |
|
3297 | ResolvePackageDependenciesForBuild = true | |
|
3298 | ResolvePackageDependenciesForBuildDependsOn = | |
|
3299 | ResolveLockFileReferences; | |
|
3300 | ResolveLockFileAnalyzers; | |
|
3301 | ResolveLockFileCopyLocalProjectDeps; | |
|
3302 | IncludeTransitiveProjectReferences | |
|
3303 | ||
|
3304 | ResolveReferencesDependsOn = | |
|
3305 | BeforeResolveReferences; | |
|
3306 | AssignProjectConfiguration; | |
|
3307 | ResolveProjectReferences; | |
|
3308 | FindInvalidProjectReferences; | |
|
3309 | ResolveNativeReferences; | |
|
3310 | ResolveAssemblyReferences; | |
|
3311 | GenerateBindingRedirects; | |
|
3312 | ResolveComReferences; | |
|
3313 | AfterResolveReferences | |
|
3314 | ||
|
3315 | ResolveSDKReferencesDependsOn = | |
|
3316 | GetInstalledSDKLocations | |
|
3317 | ||
|
3318 | RestoreContinueOnError = WarnAndContinue | |
|
3319 | RestoreProjectStyle = PackageReference | |
|
3320 | RestoreRecursive = true | |
|
3321 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
3322 | RestoreUseCustomAfterTargets = | |
|
3323 | RootNamespace = Implab | |
|
3324 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
3325 | RunDependsOn = | |
|
3326 | RunWorkingDirectory = | |
|
3327 | SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames | |
|
3328 | SDK_HOME = /usr/lib64/jvm/java | |
|
3329 | SDK35ToolsPath = / | |
|
3330 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
3331 | SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences | |
|
3332 | SDKReferenceDirectoryRoot = /home/sergey/.local/share/Microsoft SDKs;/usr/lib/mono/xbuild/Microsoft SDKs | |
|
3333 | SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs | |
|
3334 | SDL_AUDIODRIVER = pulse | |
|
3335 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
3336 | SGenFilesOutputGroupDependsOn = | |
|
3337 | SGenShouldGenerateSerializer = true | |
|
3338 | SGenUseKeep = false | |
|
3339 | SGenUseProxyTypes = true | |
|
3340 | SHELL = /bin/bash | |
|
3341 | SHLVL = 3 | |
|
3342 | ShouldMarkCertainSDKReferencesAsRuntimeOnly = true | |
|
3343 | SignAssembly = false | |
|
3344 | SkipCopyUnchangedFiles = true | |
|
3345 | SkipImportNuGetBuildTargets = true | |
|
3346 | SkipImportNuGetProps = true | |
|
3347 | SolutionDir = *Undefined* | |
|
3348 | SolutionExt = *Undefined* | |
|
3349 | SolutionFileName = *Undefined* | |
|
3350 | SolutionName = *Undefined* | |
|
3351 | SolutionPath = *Undefined* | |
|
3352 | SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
3353 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
3354 | TargetCulture = * | |
|
3355 | TargetDeployManifestFileName = Implab.application | |
|
3356 | TargetDir = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
3357 | TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem) | |
|
3358 | TargetedSDKArchitecture = msil | |
|
3359 | TargetedSDKConfiguration = Debug | |
|
3360 | TargetExt = .dll | |
|
3361 | TargetFileName = Implab.dll | |
|
3362 | TargetFramework = netstandard2.0 | |
|
3363 | TargetFrameworkAsMSBuildRuntime = CLR2 | |
|
3364 | TargetFrameworkDirectory = | |
|
3365 | TargetFrameworkIdentifier = .NETStandard | |
|
3366 | TargetFrameworkMoniker = .NETStandard,Version=v2.0 | |
|
3367 | TargetFrameworkMonikerAssemblyAttributesPath = /tmp/.NETStandard,Version=v2.0.AssemblyAttributes.cs | |
|
3368 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
3369 | TargetFrameworks = netstandard2.0 | |
|
3370 | TargetFrameworkVersion = v2.0 | |
|
3371 | TargetName = Implab | |
|
3372 | TargetPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
3373 | TargetPlatformDisplayName = Windows 7.0 | |
|
3374 | TargetPlatformIdentifier = Windows | |
|
3375 | TargetPlatformMoniker = Windows,Version=7.0 | |
|
3376 | TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows | |
|
3377 | TargetPlatformSdkPath = | |
|
3378 | TargetPlatformVersion = 7.0 | |
|
3379 | TargetRuntime = Managed | |
|
3380 | TERM = xterm | |
|
3381 | TERM_PROGRAM = vscode | |
|
3382 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
3383 | Title = Implab library | |
|
3384 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
3385 | TreatWarningsAsErrors = false | |
|
3386 | UnmanagedRegistrationDependsOn = | |
|
3387 | UnmanagedUnregistrationDependsOn = | |
|
3388 | UseCommonOutputDirectory = false | |
|
3389 | UseHostCompilerIfAvailable = true | |
|
3390 | USER = sergey | |
|
3391 | USERNAME = sergey | |
|
3392 | UserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
3393 | UserRuntimeConfig = /home/sergey/projects/ImplabNet/Implab/runtimeconfig.template.json | |
|
3394 | UseSourcePath = true | |
|
3395 | UsingMicrosoftNETSdk = true | |
|
3396 | Utf8Output = true | |
|
3397 | ValidateRuntimeIdentifierCompatibility = false | |
|
3398 | Version = 3.0.10 | |
|
3399 | VisualStudioVersion = 15.0 | |
|
3400 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
3401 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
3402 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
3403 | VSCODE_PID = 32392 | |
|
3404 | WarningLevel = 4 | |
|
3405 | WarningsAsErrors = NU1605 | |
|
3406 | WAYLAND_DISPLAY = wayland-0 | |
|
3407 | WebReference_EnableLegacyEventingModel = false | |
|
3408 | WebReference_EnableProperties = true | |
|
3409 | WebReference_EnableSQLTypes = true | |
|
3410 | WINDOWMANAGER = /usr/bin/gnome | |
|
3411 | WMSJSProject = WJProject | |
|
3412 | WMSJSProjectDirectory = JavaScript | |
|
3413 | XAUTHLOCALHOSTNAME = chamber | |
|
3414 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
3415 | XCURSOR_THEME = DMZ | |
|
3416 | XDG_CONFIG_DIRS = /etc/xdg | |
|
3417 | XDG_CURRENT_DESKTOP = GNOME | |
|
3418 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
3419 | XDG_MENU_PREFIX = gnome- | |
|
3420 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
3421 | XDG_SEAT = seat0 | |
|
3422 | XDG_SESSION_DESKTOP = gnome | |
|
3423 | XDG_SESSION_ID = 1 | |
|
3424 | XDG_SESSION_TYPE = wayland | |
|
3425 | XDG_VTNR = 2 | |
|
3426 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
3427 | XMODIFIERS = @im=ibus | |
|
3428 | XNLSPATH = /usr/share/X11/nls | |
|
3429 | YieldDuringToolExecution = true | |
|
3430 | ||
|
3431 | Initial Items: | |
|
3432 | _ApplicationManifestFinal | |
|
3433 | bin/Debug/netstandard2.0/Native.Implab.manifest | |
|
3434 | TargetPath = Native.Implab.manifest | |
|
3435 | _DebugSymbolsIntermediatePath | |
|
3436 | obj/Debug/netstandard2.0/Implab.pdb | |
|
3437 | _DebugSymbolsOutputPath | |
|
3438 | bin/Debug/netstandard2.0/Implab.pdb | |
|
3439 | _DeploymentManifestEntryPoint | |
|
3440 | obj/Debug/netstandard2.0/Implab.dll | |
|
3441 | TargetPath = Implab.dll | |
|
3442 | _ImplicitPackageReference | |
|
3443 | NETStandard.Library | |
|
3444 | Version = 1.6.1 | |
|
3445 | IsImplicitlyDefined = true | |
|
3446 | PrivateAssets = All | |
|
3447 | Publish = true | |
|
3448 | _ImplicitPackageReferenceCheck | |
|
3449 | NETStandard.Library | |
|
3450 | Version = 1.6.1 | |
|
3451 | IsImplicitlyDefined = true | |
|
3452 | PrivateAssets = All | |
|
3453 | Publish = true | |
|
3454 | _OutputPathItem | |
|
3455 | bin/Debug/netstandard2.0/ | |
|
3456 | _ResolveComReferenceCache | |
|
3457 | obj/Debug/netstandard2.0/Implab.csproj.ResolveComReference.cache | |
|
3458 | _UnmanagedRegistrationCache | |
|
3459 | obj/Implab.csproj.UnmanagedRegistration.cache | |
|
3460 | AppConfigFileDestination | |
|
3461 | bin/Debug/netstandard2.0/Implab.dll.config | |
|
3462 | ApplicationManifest | |
|
3463 | obj/Debug/netstandard2.0/Native.Implab.manifest | |
|
3464 | TargetPath = Native.Implab.manifest | |
|
3465 | BuiltProjectOutputGroupKeyOutput | |
|
3466 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.dll | |
|
3467 | IsKeyOutput = true | |
|
3468 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
3469 | TargetPath = Implab.dll | |
|
3470 | Compile | |
|
3471 | AbstractEvent.cs | |
|
3472 | Automaton/AutomatonConst.cs | |
|
3473 | Automaton/AutomatonTransition.cs | |
|
3474 | Automaton/DFATable.cs | |
|
3475 | Automaton/IAlphabet.cs | |
|
3476 | Automaton/IAlphabetBuilder.cs | |
|
3477 | Automaton/IDFATable.cs | |
|
3478 | Automaton/IDFATableBuilder.cs | |
|
3479 | Automaton/IndexedAlphabetBase.cs | |
|
3480 | Automaton/MapAlphabet.cs | |
|
3481 | Automaton/ParserException.cs | |
|
3482 | Automaton/RegularExpressions/AltToken.cs | |
|
3483 | Automaton/RegularExpressions/BinaryToken.cs | |
|
3484 | Automaton/RegularExpressions/CatToken.cs | |
|
3485 | Automaton/RegularExpressions/EmptyToken.cs | |
|
3486 | Automaton/RegularExpressions/EndToken.cs | |
|
3487 | Automaton/RegularExpressions/EndTokenT.cs | |
|
3488 | Automaton/RegularExpressions/ITaggedDFABuilder.cs | |
|
3489 | Automaton/RegularExpressions/IVisitor.cs | |
|
3490 | Automaton/RegularExpressions/RegularDFA.cs | |
|
3491 | Automaton/RegularExpressions/RegularExpressionVisitor.cs | |
|
3492 | Automaton/RegularExpressions/RegularExpressionVisitorT.cs | |
|
3493 | Automaton/RegularExpressions/StarToken.cs | |
|
3494 | Automaton/RegularExpressions/SymbolToken.cs | |
|
3495 | Automaton/RegularExpressions/Token.cs | |
|
3496 | Components/Disposable.cs | |
|
3497 | Components/DisposablePool.cs | |
|
3498 | Components/ExecutionState.cs | |
|
3499 | Components/IAsyncComponent.cs | |
|
3500 | Components/IFactory.cs | |
|
3501 | Components/IInitializable.cs | |
|
3502 | Components/IRunnable.cs | |
|
3503 | Components/IServiceLocator.cs | |
|
3504 | Components/LazyAndWeak.cs | |
|
3505 | Components/ObjectPool.cs | |
|
3506 | Components/PollingComponent.cs | |
|
3507 | Components/RunnableComponent.cs | |
|
3508 | Components/ServiceLocator.cs | |
|
3509 | Components/StateChangeEventArgs.cs | |
|
3510 | CustomEqualityComparer.cs | |
|
3511 | Deferred.cs | |
|
3512 | Deferred`1.cs | |
|
3513 | Diagnostics/ActivityScope.cs | |
|
3514 | Diagnostics/LogicalOperation.cs | |
|
3515 | Diagnostics/LogicalOperationScope.cs | |
|
3516 | Diagnostics/SimpleTraceListener.cs | |
|
3517 | Diagnostics/Trace.cs | |
|
3518 | Diagnostics/TraceEventCodes.cs | |
|
3519 | Diagnostics/TraceSourceAttribute.cs | |
|
3520 | ExceptionHelpers.cs | |
|
3521 | Formats/ByteAlphabet.cs | |
|
3522 | Formats/CharAlphabet.cs | |
|
3523 | Formats/CharMap.cs | |
|
3524 | Formats/FastInpurScanner.cs | |
|
3525 | Formats/Grammar.cs | |
|
3526 | Formats/InputScanner.cs | |
|
3527 | Formats/Json/JsonElementContext.cs | |
|
3528 | Formats/Json/JsonElementType.cs | |
|
3529 | Formats/Json/JsonGrammar.cs | |
|
3530 | Formats/Json/JsonReader.cs | |
|
3531 | Formats/Json/JsonScanner.cs | |
|
3532 | Formats/Json/JsonStringScanner.cs | |
|
3533 | Formats/Json/JsonTextScanner.cs | |
|
3534 | Formats/Json/JsonTokenType.cs | |
|
3535 | Formats/Json/JsonWriter.cs | |
|
3536 | Formats/Json/StringTranslator.cs | |
|
3537 | IDispatcher.cs | |
|
3538 | IPromise.cs | |
|
3539 | IPromiseT.cs | |
|
3540 | IResolvable.cs | |
|
3541 | IResolvable`1.cs | |
|
3542 | Messaging/IConsumer.cs | |
|
3543 | Messaging/IProducer.cs | |
|
3544 | Messaging/ISession.cs | |
|
3545 | Parallels/AsyncQueue.cs | |
|
3546 | Parallels/BlockingQueue.cs | |
|
3547 | Parallels/DispatchPool.cs | |
|
3548 | Parallels/SharedLock.cs | |
|
3549 | Parallels/Signal.cs | |
|
3550 | Parallels/SimpleAsyncQueue.cs | |
|
3551 | Parallels/SyncContextDispatcher.cs | |
|
3552 | Parallels/ThreadPoolDispatcher.cs | |
|
3553 | Promise.cs | |
|
3554 | Promise`1.cs | |
|
3555 | PromiseActionReaction.cs | |
|
3556 | PromiseActionReaction`1.cs | |
|
3557 | PromiseAll.cs | |
|
3558 | PromiseAll`1.cs | |
|
3559 | PromiseAwaiter.cs | |
|
3560 | PromiseAwaiter`1.cs | |
|
3561 | PromiseExecutor.cs | |
|
3562 | PromiseExecutor`1.cs | |
|
3563 | PromiseExtensions.cs | |
|
3564 | PromiseFuncReaction`1.cs | |
|
3565 | PromiseFuncReaction`2.cs | |
|
3566 | PromiseHandler.cs | |
|
3567 | PromiseState.cs | |
|
3568 | PromiseTransientException.cs | |
|
3569 | RejectedPromise.cs | |
|
3570 | RejectedPromise`1.cs | |
|
3571 | ResolvedPromise.cs | |
|
3572 | ResolvedPromise`1.cs | |
|
3573 | Safe.cs | |
|
3574 | TaskHelpers.cs | |
|
3575 | Xml/JsonXmlCaseTransform.cs | |
|
3576 | Xml/JsonXmlReader.cs | |
|
3577 | Xml/JsonXmlReaderOptions.cs | |
|
3578 | Xml/JsonXmlReaderPosition.cs | |
|
3579 | Xml/SerializationHelpers.cs | |
|
3580 | Xml/SerializersPool.cs | |
|
3581 | Xml/XmlNameContext.cs | |
|
3582 | Xml/XmlSimpleAttribute.cs | |
|
3583 | Xml/XmlToJson.cs | |
|
3584 | CopyUpToDateMarker | |
|
3585 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.csproj.CopyComplete | |
|
3586 | DebugSymbolsProjectOutputGroupOutput | |
|
3587 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.pdb | |
|
3588 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.pdb | |
|
3589 | TargetPath = Implab.pdb | |
|
3590 | DeployManifest | |
|
3591 | obj/Debug/netstandard2.0/Implab.application | |
|
3592 | TargetPath = Implab.application | |
|
3593 | EmbeddedResource | |
|
3594 | Xml/json.xsl | |
|
3595 | GenerateRuntimeConfigurationFilesInputs | |
|
3596 | /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
3597 | IntermediateAssembly | |
|
3598 | obj/Debug/netstandard2.0/Implab.dll | |
|
3599 | None | |
|
3600 | Implab.nuspec | |
|
3601 | implab.snk | |
|
3602 | license.txt | |
|
3603 | Xml/json.xsl | |
|
3604 | Xml/readme.txt | |
|
3605 | PackageReference | |
|
3606 | NETStandard.Library | |
|
3607 | Version = 1.6.1 | |
|
3608 | IsImplicitlyDefined = true | |
|
3609 | PrivateAssets = All | |
|
3610 | Publish = true | |
|
3611 | PreprocessorValue | |
|
3612 | assemblyname | |
|
3613 | Value = Implab | |
|
3614 | filename | |
|
3615 | Value = Implab.csproj | |
|
3616 | fullpath | |
|
3617 | Value = /home/sergey/projects/ImplabNet/Implab | |
|
3618 | outputfilename | |
|
3619 | Value = Implab.dll | |
|
3620 | rootnamespace | |
|
3621 | Value = Implab | |
|
3622 | ProjectCapability | |
|
3623 | AllTargetOutputGroups | |
|
3624 | AssemblyReferences | |
|
3625 | BuildWindowsDesktopTarget | |
|
3626 | COMReferences | |
|
3627 | CSharp | |
|
3628 | DeclaredSourceItems | |
|
3629 | FolderPublish | |
|
3630 | GenerateDocumentationFile | |
|
3631 | LanguageService | |
|
3632 | Managed | |
|
3633 | OutputGroups | |
|
3634 | Pack | |
|
3635 | ProjectReferences | |
|
3636 | ReferencesFolder | |
|
3637 | RelativePathDerivedDefaultNamespace | |
|
3638 | SharedProjectReferences | |
|
3639 | SingleFileGenerators | |
|
3640 | UserSourceItems | |
|
3641 | VisualStudioWellKnownOutputGroups | |
|
3642 | PropertyPageSchema | |
|
3643 | /usr/lib/mono/msbuild/15.0/bin/assemblyreference.xaml | |
|
3644 | Context = ;BrowseObject | |
|
3645 | /usr/lib/mono/msbuild/15.0/bin/COMReference.xaml | |
|
3646 | Context = ;BrowseObject | |
|
3647 | /usr/lib/mono/msbuild/15.0/bin/Content.xaml | |
|
3648 | Context = File;BrowseObject | |
|
3649 | /usr/lib/mono/msbuild/15.0/bin/CSharp.BrowseObject.xaml | |
|
3650 | Context = BrowseObject | |
|
3651 | /usr/lib/mono/msbuild/15.0/bin/CSharp.ProjectItemsSchema.xaml | |
|
3652 | /usr/lib/mono/msbuild/15.0/bin/CSharp.xaml | |
|
3653 | Context = File | |
|
3654 | /usr/lib/mono/msbuild/15.0/bin/Debugger_General.xaml | |
|
3655 | Context = Project | |
|
3656 | /usr/lib/mono/msbuild/15.0/bin/EmbeddedResource.xaml | |
|
3657 | Context = File;BrowseObject | |
|
3658 | /usr/lib/mono/msbuild/15.0/bin/Folder.xaml | |
|
3659 | Context = File;BrowseObject | |
|
3660 | /usr/lib/mono/msbuild/15.0/bin/General.BrowseObject.xaml | |
|
3661 | Context = BrowseObject | |
|
3662 | /usr/lib/mono/msbuild/15.0/bin/General.xaml | |
|
3663 | Context = Project | |
|
3664 | /usr/lib/mono/msbuild/15.0/bin/General_File.xaml | |
|
3665 | Context = File | |
|
3666 | /usr/lib/mono/msbuild/15.0/bin/None.xaml | |
|
3667 | Context = File;BrowseObject | |
|
3668 | /usr/lib/mono/msbuild/15.0/bin/ProjectItemsSchema.xaml | |
|
3669 | /usr/lib/mono/msbuild/15.0/bin/ProjectReference.xaml | |
|
3670 | Context = ;BrowseObject | |
|
3671 | /usr/lib/mono/msbuild/15.0/bin/ResolvedAssemblyReference.xaml | |
|
3672 | Context = ProjectSubscriptionService;BrowseObject | |
|
3673 | /usr/lib/mono/msbuild/15.0/bin/ResolvedCOMReference.xaml | |
|
3674 | Context = ProjectSubscriptionService;BrowseObject | |
|
3675 | /usr/lib/mono/msbuild/15.0/bin/ResolvedProjectReference.xaml | |
|
3676 | Context = ProjectSubscriptionService;BrowseObject | |
|
3677 | /usr/lib/mono/msbuild/15.0/bin/SCC.xaml | |
|
3678 | Context = Invisible | |
|
3679 | /usr/lib/mono/msbuild/15.0/bin/SpecialFolder.xaml | |
|
3680 | Context = File;ProjectSubscriptionService | |
|
3681 | SupportedTargetFramework | |
|
3682 | .NETCoreApp,Version=v1.0 | |
|
3683 | DisplayName = .NET Core 1.0 | |
|
3684 | .NETCoreApp,Version=v1.1 | |
|
3685 | DisplayName = .NET Core 1.1 | |
|
3686 | .NETCoreApp,Version=v2.0 | |
|
3687 | DisplayName = .NET Core 2.0 | |
|
3688 | .NETStandard,Version=v1.0 | |
|
3689 | DisplayName = .NET Standard 1.0 | |
|
3690 | .NETStandard,Version=v1.1 | |
|
3691 | DisplayName = .NET Standard 1.1 | |
|
3692 | .NETStandard,Version=v1.2 | |
|
3693 | DisplayName = .NET Standard 1.2 | |
|
3694 | .NETStandard,Version=v1.3 | |
|
3695 | DisplayName = .NET Standard 1.3 | |
|
3696 | .NETStandard,Version=v1.4 | |
|
3697 | DisplayName = .NET Standard 1.4 | |
|
3698 | .NETStandard,Version=v1.5 | |
|
3699 | DisplayName = .NET Standard 1.5 | |
|
3700 | .NETStandard,Version=v1.6 | |
|
3701 | DisplayName = .NET Standard 1.6 | |
|
3702 | .NETStandard,Version=v2.0 | |
|
3703 | DisplayName = .NET Standard 2.0 | |
|
3704 | ||
|
3705 | Building with tools version "15.0". | |
|
3706 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
3707 | Target "_GetRestoreSettingsPerFramework: (TargetId:18)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
3708 | Added Item(s): | |
|
3709 | _RestoreSettingsPerFramework= | |
|
3710 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
3711 | RestoreAdditionalProjectFallbackFolders= | |
|
3712 | RestoreAdditionalProjectFallbackFoldersExcludes= | |
|
3713 | RestoreAdditionalProjectSources= | |
|
3714 | Done building target "_GetRestoreSettingsPerFramework" in project "Implab.csproj".: (TargetId:18) | |
|
3715 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GetRestoreSettingsPerFramework target(s)). | |
|
3716 | _GetRestoreSettings: (TargetId:17) | |
|
3717 | Output Item(s): | |
|
3718 | _RestoreSettingsPerFramework= | |
|
3719 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
3720 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3721 | MSBuildSourceTargetName=_GetRestoreSettingsPerFramework | |
|
3722 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3723 | RestoreAdditionalProjectFallbackFolders= | |
|
3724 | RestoreAdditionalProjectFallbackFoldersExcludes= | |
|
3725 | RestoreAdditionalProjectSources= (TaskId:18) | |
|
3726 | Done executing task "MSBuild". (TaskId:18) | |
|
3727 | Using "GetRestoreSettingsTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
3728 | Task "GetRestoreSettingsTask" (TaskId:19) | |
|
3729 | Task Parameter:ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:19) | |
|
3730 | Task Parameter: | |
|
3731 | RestoreSettingsPerFramework= | |
|
3732 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
3733 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3734 | MSBuildSourceTargetName=_GetRestoreSettingsPerFramework | |
|
3735 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3736 | RestoreAdditionalProjectFallbackFolders= | |
|
3737 | RestoreAdditionalProjectFallbackFoldersExcludes= | |
|
3738 | RestoreAdditionalProjectSources= (TaskId:19) | |
|
3739 | Task Parameter:MSBuildStartupDirectory=/home/sergey/projects/ImplabNet (TaskId:19) | |
|
3740 | (in) ProjectUniqueName '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:19) | |
|
3741 | (in) RestoreSources '' (TaskId:19) | |
|
3742 | (in) RestorePackagesPath '' (TaskId:19) | |
|
3743 | (in) RestoreFallbackFolders '' (TaskId:19) | |
|
3744 | (in) RestoreConfigFile '' (TaskId:19) | |
|
3745 | (in) RestoreSolutionDirectory '' (TaskId:19) | |
|
3746 | (in) RestorePackagesPathOverride '' (TaskId:19) | |
|
3747 | (in) RestoreSourcesOverride '' (TaskId:19) | |
|
3748 | (in) RestoreFallbackFoldersOverride '' (TaskId:19) | |
|
3749 | (in) MSBuildStartupDirectory '/home/sergey/projects/ImplabNet' (TaskId:19) | |
|
3750 | (out) OutputPackagesPath '/home/sergey/.nuget/packages/' (TaskId:19) | |
|
3751 | (out) OutputSources 'https://api.nuget.org/v3/index.json' (TaskId:19) | |
|
3752 | (out) OutputFallbackFolders '' (TaskId:19) | |
|
3753 | (out) OutputConfigFilePaths '/home/sergey/.config/NuGet/NuGet.Config' (TaskId:19) | |
|
3754 | Output Property: _OutputSources=https://api.nuget.org/v3/index.json (TaskId:19) | |
|
3755 | Output Property: _OutputPackagesPath=/home/sergey/.nuget/packages/ (TaskId:19) | |
|
3756 | Output Property: _OutputFallbackFolders= (TaskId:19) | |
|
3757 | Output Property: _OutputConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config (TaskId:19) | |
|
3758 | Done executing task "GetRestoreSettingsTask". (TaskId:19) | |
|
3759 | Done building target "_GetRestoreSettings" in project "Implab.csproj".: (TargetId:17) | |
|
3760 | Target "_GenerateDotnetCliToolReferenceSpecs: (TargetId:19)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreGraphProjectEntry" depends on it): | |
|
3761 | Set Property: DotnetCliToolTargetFramework=netcoreapp1.0 | |
|
3762 | Using "GetRestoreDotnetCliToolsTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
3763 | Task "GetRestoreDotnetCliToolsTask" (TaskId:20) | |
|
3764 | Task Parameter:ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:20) | |
|
3765 | Task Parameter:ToolFramework=netcoreapp1.0 (TaskId:20) | |
|
3766 | Task Parameter:RestorePackagesPath=/home/sergey/.nuget/packages/ (TaskId:20) | |
|
3767 | Task Parameter:RestoreSources=https://api.nuget.org/v3/index.json (TaskId:20) | |
|
3768 | Task Parameter:RestoreConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config (TaskId:20) | |
|
3769 | (in) ProjectPath '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:20) | |
|
3770 | (in) DotnetCliToolReferences '' (TaskId:20) | |
|
3771 | (in) RestoreSources 'https://api.nuget.org/v3/index.json' (TaskId:20) | |
|
3772 | (in) RestorePackagesPath '/home/sergey/.nuget/packages/' (TaskId:20) | |
|
3773 | (in) RestoreConfigFilePaths '/home/sergey/.config/NuGet/NuGet.Config' (TaskId:20) | |
|
3774 | Done executing task "GetRestoreDotnetCliToolsTask". (TaskId:20) | |
|
3775 | Done building target "_GenerateDotnetCliToolReferenceSpecs" in project "Implab.csproj".: (TargetId:19) | |
|
3776 | Target "_GenerateRestoreGraphProjectEntry: (TargetId:20)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
3777 | Done building target "_GenerateRestoreGraphProjectEntry" in project "Implab.csproj".: (TargetId:20) | |
|
3778 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GenerateRestoreGraphProjectEntry target(s)). | |
|
3779 | _GenerateRestoreGraph: (TargetId:14) | |
|
3780 | Output Item(s): | |
|
3781 | _RestoreGraphEntry= | |
|
3782 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
3783 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3784 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
3785 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3786 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3787 | Type=RestoreSpec (TaskId:16) | |
|
3788 | Done executing task "MsBuild". (TaskId:16) | |
|
3789 | Task "MsBuild" (TaskId:21) | |
|
3790 | Task Parameter: | |
|
3791 | Projects= | |
|
3792 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3793 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3794 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
3795 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:21) | |
|
3796 | Task Parameter:Targets=_GenerateProjectRestoreGraph (TaskId:21) | |
|
3797 | Task Parameter: | |
|
3798 | Properties= | |
|
3799 | RestoreUseCustomAfterTargets= | |
|
3800 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
3801 | BuildProjectReferences=false | |
|
3802 | ExcludeRestorePackageImports=true (TaskId:21) | |
|
3803 | Global Properties: (TaskId:21) | |
|
3804 | RestoreUseCustomAfterTargets= (TaskId:21) | |
|
3805 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:21) | |
|
3806 | BuildProjectReferences=false (TaskId:21) | |
|
3807 | ExcludeRestorePackageImports=true (TaskId:21) | |
|
3808 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:8) on node 1 (_GenerateProjectRestoreGraph target(s)). | |
|
3809 | Initial Properties: | |
|
3810 | _ = /usr/bin/msbuild | |
|
3811 | _DirectoryBuildPropsBasePath = | |
|
3812 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
3813 | _DirectoryBuildTargetsBasePath = | |
|
3814 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
3815 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
3816 | RestoreUseCustomAfterTargets=; | |
|
3817 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
3818 | BuildProjectReferences=false; | |
|
3819 | ExcludeRestorePackageImports=true; | |
|
3820 | ||
|
3821 | _OutputConfigFilePaths = /home/sergey/.config/NuGet/NuGet.Config | |
|
3822 | _OutputFallbackFolders = | |
|
3823 | _OutputPackagesPath = /home/sergey/.nuget/packages/ | |
|
3824 | _OutputSources = https://api.nuget.org/v3/index.json | |
|
3825 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
3826 | _RestoreProjectFramework = netstandard2.0 | |
|
3827 | _RestoreTargetFrameworkItemsHasValues = true | |
|
3828 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
3829 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
3830 | AllowUnsafeBlocks = false | |
|
3831 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
3832 | AssemblyName = Implab | |
|
3833 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
3834 | AssemblyTitle = Implab | |
|
3835 | AUDIODRIVER = pulseaudio | |
|
3836 | Authors = Sergey Smirnov | |
|
3837 | BaseIntermediateOutputPath = obj\ | |
|
3838 | BaseOutputPath = bin\ | |
|
3839 | BuildInParallel = true | |
|
3840 | BuildOutputTargetFolder = lib | |
|
3841 | BuildProjectReferences = false | |
|
3842 | CheckForOverflowUnderflow = false | |
|
3843 | CHROME_DESKTOP = Code.desktop | |
|
3844 | COLORTERM = 1 | |
|
3845 | Company = Sergey Smirnov | |
|
3846 | Configuration = Debug | |
|
3847 | Configurations = Debug;Release | |
|
3848 | ContentTargetFolders = content;contentFiles | |
|
3849 | Copyright = 2012-2018 Sergey Smirnov | |
|
3850 | CPU = x86_64 | |
|
3851 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
3852 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CrossTargeting.targets | |
|
3853 | CSHEDIT = emacs | |
|
3854 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
3855 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
3856 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
3857 | DebugSymbols = true | |
|
3858 | DebugType = portable | |
|
3859 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
3860 | DefineConstants = TRACE | |
|
3861 | DelaySign = false | |
|
3862 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
3863 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
3864 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
3865 | ||
|
3866 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
3867 | DESKTOP_SESSION = gnome | |
|
3868 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
3869 | Deterministic = true | |
|
3870 | DisableHandlePackageFileConflicts = true | |
|
3871 | DISPLAY = :0 | |
|
3872 | DotnetCliToolTargetFramework = netcoreapp1.0 | |
|
3873 | ErrorReport = prompt | |
|
3874 | ExcludeRestorePackageImports = true | |
|
3875 | FileAlignment = 512 | |
|
3876 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
3877 | FROM_HEADER = | |
|
3878 | G_BROKEN_FILENAMES = 1 | |
|
3879 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
3880 | GDMSESSION = gnome | |
|
3881 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
3882 | GeneratePackageOnBuild = false | |
|
3883 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
3884 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
3885 | GJS_DEBUG_OUTPUT = stderr | |
|
3886 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
3887 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
3888 | GPG_TTY = /dev/pts/1 | |
|
3889 | HideWarningsAndErrors = false | |
|
3890 | HISTSIZE = 1000 | |
|
3891 | HOME = /home/sergey | |
|
3892 | HOST = chamber | |
|
3893 | HOSTNAME = chamber | |
|
3894 | HOSTTYPE = x86_64 | |
|
3895 | ImportByWildcardAfterMicrosoftCommonCrossTargetingTargets = true | |
|
3896 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
3897 | ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets = true | |
|
3898 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
3899 | ImportDirectoryBuildProps = true | |
|
3900 | ImportDirectoryBuildTargets = true | |
|
3901 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
3902 | ImportProjectExtensionProps = true | |
|
3903 | ImportProjectExtensionTargets = true | |
|
3904 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
3905 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
3906 | IncludeBuildOutput = true | |
|
3907 | IncludeContentInPack = true | |
|
3908 | IntermediateOutputPath = obj\Debug\ | |
|
3909 | IsCrossTargetingBuild = true | |
|
3910 | IsPackable = true | |
|
3911 | IsRestoreTargetsFileLoaded = true | |
|
3912 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
3913 | JAVA_HOME = /usr/lib64/jvm/java | |
|
3914 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
3915 | JDK_HOME = /usr/lib64/jvm/java | |
|
3916 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
3917 | LANG = en_US.UTF-8 | |
|
3918 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
3919 | LC_CTYPE = ru_RU.UTF-8 | |
|
3920 | LESS = -M -I -R | |
|
3921 | LESS_ADVANCED_PREPROCESSOR = no | |
|
3922 | LESSCLOSE = lessclose.sh %s %s | |
|
3923 | LESSKEY = /etc/lesskey.bin | |
|
3924 | LESSOPEN = lessopen.sh %s | |
|
3925 | LocalAppData = /home/sergey/.local/share | |
|
3926 | LOGNAME = sergey | |
|
3927 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
3928 | LS_OPTIONS = -N --color=tty -T 0 | |
|
3929 | MACHTYPE = x86_64-suse-linux | |
|
3930 | MAIL = /var/spool/mail/sergey | |
|
3931 | MANPATH = /usr/local/man:/usr/share/man | |
|
3932 | MicrosoftCommonPropsHasBeenImported = true | |
|
3933 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
3934 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
3935 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
3936 | MicrosoftNETBuildTasksTFM = net46 | |
|
3937 | MINICOM = -c on | |
|
3938 | MONO_GC_PARAMS = nursery-size=64m, | |
|
3939 | MORE = -sl | |
|
3940 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
3941 | MSBuildAssemblyVersion = 15.0 | |
|
3942 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
3943 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
3944 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
3945 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
3946 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
3947 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
3948 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
3949 | MSBuildLastTaskResult = true | |
|
3950 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
3951 | MSBuildNodeCount = 1 | |
|
3952 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
3953 | MSBuildProjectDefaultTargets = Build | |
|
3954 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
3955 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
3956 | MSBuildProjectExtension = .csproj | |
|
3957 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
3958 | MSBuildProjectFile = Implab.csproj | |
|
3959 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
3960 | MSBuildProjectName = Implab | |
|
3961 | MSBuildRuntimeType = Mono | |
|
3962 | MSBuildRuntimeVersion = 4.0.30319 | |
|
3963 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
3964 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
3965 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
3966 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
3967 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
3968 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
3969 | MSBuildToolsVersion = 15.0 | |
|
3970 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
3971 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
3972 | NNTPSERVER = news | |
|
3973 | NoLogo = true | |
|
3974 | NoWarn = 1701;1702;1705 | |
|
3975 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/buildCrossTargeting/NuGet.Build.Tasks.Pack.targets | |
|
3976 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
3977 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
3978 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
3979 | NuspecOutputPath = obj\Debug\ | |
|
3980 | Optimize = false | |
|
3981 | OS = Unix | |
|
3982 | OSTYPE = linux | |
|
3983 | OutputPath = bin\Debug\ | |
|
3984 | OutputType = Library | |
|
3985 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
3986 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
3987 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
3988 | ||
|
3989 | PackageId = Implab | |
|
3990 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
3991 | PackageOutputPath = bin\Debug\ | |
|
3992 | PackageProjectUrl = https://implab.org | |
|
3993 | PackageRequireLicenseAcceptance = false | |
|
3994 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
3995 | PackageVersion = 3.0.10 | |
|
3996 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
3997 | PAGER = less | |
|
3998 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
3999 | Platform = AnyCPU | |
|
4000 | PlatformName = AnyCPU | |
|
4001 | Platforms = AnyCPU | |
|
4002 | Prefer32Bit = false | |
|
4003 | Product = Implab | |
|
4004 | PROFILEREAD = true | |
|
4005 | PWD = /home/sergey/projects/ImplabNet | |
|
4006 | PYTHONSTARTUP = /etc/pythonstart | |
|
4007 | QEMU_AUDIO_DRV = pa | |
|
4008 | QT_IM_MODULE = ibus | |
|
4009 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
4010 | RepositoryType = mercurial | |
|
4011 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
4012 | ResolveNuGetPackages = false | |
|
4013 | RestoreContinueOnError = WarnAndContinue | |
|
4014 | RestoreProjectStyle = PackageReference | |
|
4015 | RestoreRecursive = true | |
|
4016 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
4017 | RestoreUseCustomAfterTargets = | |
|
4018 | RootNamespace = Implab | |
|
4019 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
4020 | SDK_HOME = /usr/lib64/jvm/java | |
|
4021 | SDK35ToolsPath = / | |
|
4022 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
4023 | SDL_AUDIODRIVER = pulse | |
|
4024 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
4025 | SHELL = /bin/bash | |
|
4026 | SHLVL = 3 | |
|
4027 | SignAssembly = false | |
|
4028 | SkipImportNuGetBuildTargets = true | |
|
4029 | SkipImportNuGetProps = true | |
|
4030 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
4031 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
4032 | TargetFrameworks = netstandard2.0 | |
|
4033 | TERM = xterm | |
|
4034 | TERM_PROGRAM = vscode | |
|
4035 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
4036 | Title = Implab library | |
|
4037 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
4038 | TreatWarningsAsErrors = false | |
|
4039 | USER = sergey | |
|
4040 | USERNAME = sergey | |
|
4041 | UsingMicrosoftNETSdk = true | |
|
4042 | ValidateRuntimeIdentifierCompatibility = false | |
|
4043 | Version = 3.0.10 | |
|
4044 | VisualStudioVersion = 15.0 | |
|
4045 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
4046 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
4047 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
4048 | VSCODE_PID = 32392 | |
|
4049 | WarningLevel = 4 | |
|
4050 | WarningsAsErrors = NU1605 | |
|
4051 | WAYLAND_DISPLAY = wayland-0 | |
|
4052 | WINDOWMANAGER = /usr/bin/gnome | |
|
4053 | WMSJSProject = WJProject | |
|
4054 | WMSJSProjectDirectory = JavaScript | |
|
4055 | XAUTHLOCALHOSTNAME = chamber | |
|
4056 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
4057 | XCURSOR_THEME = DMZ | |
|
4058 | XDG_CONFIG_DIRS = /etc/xdg | |
|
4059 | XDG_CURRENT_DESKTOP = GNOME | |
|
4060 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
4061 | XDG_MENU_PREFIX = gnome- | |
|
4062 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
4063 | XDG_SEAT = seat0 | |
|
4064 | XDG_SESSION_DESKTOP = gnome | |
|
4065 | XDG_SESSION_ID = 1 | |
|
4066 | XDG_SESSION_TYPE = wayland | |
|
4067 | XDG_VTNR = 2 | |
|
4068 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
4069 | XMODIFIERS = @im=ibus | |
|
4070 | XNLSPATH = /usr/share/X11/nls | |
|
4071 | ||
|
4072 | Initial Items: | |
|
4073 | _GenerateRestoreProjectPathWalkOutputs | |
|
4074 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4075 | _RestoreGraphEntry | |
|
4076 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
4077 | Type = RestoreSpec | |
|
4078 | ProjectUniqueName = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4079 | _RestoreProjectPathItems | |
|
4080 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4081 | _RestoreSettingsPerFramework | |
|
4082 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
4083 | RestoreAdditionalProjectSources = | |
|
4084 | RestoreAdditionalProjectFallbackFolders = | |
|
4085 | RestoreAdditionalProjectFallbackFoldersExcludes = | |
|
4086 | OriginalItemSpec = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4087 | MSBuildSourceProjectFile = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4088 | MSBuildSourceTargetName = _GetRestoreSettingsPerFramework | |
|
4089 | _RestoreTargetFrameworkItems | |
|
4090 | netstandard2.0 | |
|
4091 | _RestoreTargetFrameworksOutputFiltered | |
|
4092 | netstandard2.0 | |
|
4093 | _ValidProjectsForRestore | |
|
4094 | /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4095 | EmbeddedResource | |
|
4096 | Xml/json.xsl | |
|
4097 | ProjectCapability | |
|
4098 | Pack | |
|
4099 | SupportedTargetFramework | |
|
4100 | .NETCoreApp,Version=v1.0 | |
|
4101 | DisplayName = .NET Core 1.0 | |
|
4102 | .NETCoreApp,Version=v1.1 | |
|
4103 | DisplayName = .NET Core 1.1 | |
|
4104 | .NETCoreApp,Version=v2.0 | |
|
4105 | DisplayName = .NET Core 2.0 | |
|
4106 | .NETStandard,Version=v1.0 | |
|
4107 | DisplayName = .NET Standard 1.0 | |
|
4108 | .NETStandard,Version=v1.1 | |
|
4109 | DisplayName = .NET Standard 1.1 | |
|
4110 | .NETStandard,Version=v1.2 | |
|
4111 | DisplayName = .NET Standard 1.2 | |
|
4112 | .NETStandard,Version=v1.3 | |
|
4113 | DisplayName = .NET Standard 1.3 | |
|
4114 | .NETStandard,Version=v1.4 | |
|
4115 | DisplayName = .NET Standard 1.4 | |
|
4116 | .NETStandard,Version=v1.5 | |
|
4117 | DisplayName = .NET Standard 1.5 | |
|
4118 | .NETStandard,Version=v1.6 | |
|
4119 | DisplayName = .NET Standard 1.6 | |
|
4120 | .NETStandard,Version=v2.0 | |
|
4121 | DisplayName = .NET Standard 2.0 | |
|
4122 | ||
|
4123 | Building with tools version "15.0". | |
|
4124 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
4125 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
4126 | Target "_GetRestoreTargetFrameworksOutput" skipped. Previously built successfully. | |
|
4127 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
4128 | Target "_GetRestoreTargetFrameworksOutput" skipped. Previously built successfully. | |
|
4129 | Target "_GetRestoreSettings" skipped. Previously built successfully. | |
|
4130 | Target "GetAllRuntimeIdentifiers: (TargetId:21)" in file "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/buildCrossTargeting/Microsoft.NET.Sdk.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateRestoreProjectSpec" depends on it): | |
|
4131 | Added Item(s): _GetAllRuntimeIdentifiersTargetFrameworks=netstandard2.0 | |
|
4132 | Task "MSBuild" (TaskId:22) | |
|
4133 | Task Parameter:Projects=Implab.csproj (TaskId:22) | |
|
4134 | Task Parameter:Targets=GetAllRuntimeIdentifiers (TaskId:22) | |
|
4135 | Task Parameter:Properties=TargetFramework=netstandard2.0 (TaskId:22) | |
|
4136 | Global Properties: (TaskId:22) | |
|
4137 | TargetFramework=netstandard2.0 (TaskId:22) | |
|
4138 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:8) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:9) on node 1 (GetAllRuntimeIdentifiers target(s)). | |
|
4139 | Initial Properties: | |
|
4140 | _ = /usr/bin/msbuild | |
|
4141 | _ComputeExcludeFromPublishPackageReferences = true | |
|
4142 | _ConfigurationNameTmp = Debug | |
|
4143 | _DebugFileExt = .pdb | |
|
4144 | _DebugSymbolsProduced = true | |
|
4145 | _DefaultUserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
4146 | _DeploymentApplicationManifestIdentity = Native.Implab | |
|
4147 | _DeploymentBuiltUpdateInterval = 0 | |
|
4148 | _DeploymentBuiltUpdateIntervalUnits = Days | |
|
4149 | _DeploymentDeployManifestIdentity = Implab.application | |
|
4150 | _DeploymentFileMappingExtension = | |
|
4151 | _DeploymentTargetApplicationManifestFileName = Native.Implab.manifest | |
|
4152 | _DeploymentUrl = | |
|
4153 | _DirectoryBuildPropsBasePath = | |
|
4154 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
4155 | _DirectoryBuildTargetsBasePath = | |
|
4156 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
4157 | _DocumentationFileProduced = false | |
|
4158 | _DotNetAppHostExecutableName = apphost | |
|
4159 | _DotNetHostExecutableName = dotnet | |
|
4160 | _DotNetHostFxrLibraryName = libhostfxr.so | |
|
4161 | _DotNetHostPolicyLibraryName = libhostpolicy.so | |
|
4162 | _FrameworkIdentifierForImplicitDefine = NETSTANDARD | |
|
4163 | _FrameworkVersionForImplicitDefine = 2_0 | |
|
4164 | _GenerateBindingRedirectsIntermediateAppConfig = obj\Debug\netstandard2.0\Implab.dll.config | |
|
4165 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
4166 | RestoreUseCustomAfterTargets=; | |
|
4167 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
4168 | BuildProjectReferences=false; | |
|
4169 | ExcludeRestorePackageImports=true; | |
|
4170 | ||
|
4171 | _GetChildProjectCopyToOutputDirectoryItems = true | |
|
4172 | _GetChildProjectCopyToPublishDirectoryItems = true | |
|
4173 | _ImplicitPackageName = NETStandard.Library | |
|
4174 | _IsNETCoreOrNETStandard = true | |
|
4175 | _NativeLibraryExtension = .so | |
|
4176 | _NativeLibraryPrefix = lib | |
|
4177 | _NugetFallbackFolder = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../../NuGetFallbackFolder | |
|
4178 | _NugetTargetMonikerAndRID = .NETStandard,Version=v2.0 | |
|
4179 | _OriginalConfiguration = Debug | |
|
4180 | _OriginalPlatform = AnyCPU | |
|
4181 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
4182 | _ProjectDefaultTargets = Build | |
|
4183 | _ResolveReferenceDependencies = false | |
|
4184 | _RestoreGraphAbsoluteProjectPaths = | |
|
4185 | _SGenDllCreated = false | |
|
4186 | _SGenDllName = Implab.XmlSerializers.dll | |
|
4187 | _SGenGenerateSerializationAssembliesConfig = Off | |
|
4188 | _ShortFrameworkIdentifier = netstandard | |
|
4189 | _ShortFrameworkVersion = 2.0 | |
|
4190 | _TargetFrameworkDirectories = | |
|
4191 | _TargetFrameworkVersionWithoutV = 2.0 | |
|
4192 | _UsingDefaultForHasRuntimeOutput = true | |
|
4193 | _UsingDefaultPlatformTarget = true | |
|
4194 | AddAdditionalExplicitAssemblyReferences = false | |
|
4195 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
4196 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
4197 | AllowedReferenceAssemblyFileExtensions = | |
|
4198 | .winmd; | |
|
4199 | .dll; | |
|
4200 | .exe | |
|
4201 | ||
|
4202 | AllowedReferenceRelatedDebugFileExtensions = | |
|
4203 | .pdb; | |
|
4204 | .dll.mdb; | |
|
4205 | .exe.mdb | |
|
4206 | ||
|
4207 | AllowedReferenceRelatedFileExtensions = | |
|
4208 | ||
|
4209 | .pdb; | |
|
4210 | .dll.mdb; | |
|
4211 | .exe.mdb | |
|
4212 | ; | |
|
4213 | .xml; | |
|
4214 | .pri; | |
|
4215 | .dll.config; | |
|
4216 | .exe.config | |
|
4217 | ||
|
4218 | AllowUnsafeBlocks = false | |
|
4219 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
4220 | AlwaysUseNumericalSuffixInItemNames = true | |
|
4221 | AppDesignerFolder = Properties | |
|
4222 | AppendRuntimeIdentifierToOutputPath = true | |
|
4223 | AppendTargetFrameworkToOutputPath = true | |
|
4224 | AssemblyFoldersConfigFile = /usr/lib/mono/msbuild/15.0/bin/AssemblyFolders.config | |
|
4225 | AssemblyFoldersSuffix = AssemblyFoldersEx | |
|
4226 | AssemblyName = Implab | |
|
4227 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
4228 | AssemblyTitle = Implab | |
|
4229 | AssetTargetFallback = ;net461 | |
|
4230 | AssignTargetPathsDependsOn = | |
|
4231 | AUDIODRIVER = pulseaudio | |
|
4232 | Authors = Sergey Smirnov | |
|
4233 | AutoUnifyAssemblyReferences = true | |
|
4234 | AvailablePlatforms = Any CPU,x86,x64 | |
|
4235 | BaseIntermediateOutputPath = obj\ | |
|
4236 | BaseOutputPath = bin\ | |
|
4237 | BuildCompileAction = Build | |
|
4238 | BuildDependsOn = | |
|
4239 | BeforeBuild; | |
|
4240 | CoreBuild; | |
|
4241 | AfterBuild | |
|
4242 | ||
|
4243 | BuildGenerateSourcesAction = Build | |
|
4244 | BuildingProject = false | |
|
4245 | BuildInParallel = true | |
|
4246 | BuildLinkAction = Build | |
|
4247 | BuildOutputTargetFolder = lib | |
|
4248 | BuildProjectReferences = false | |
|
4249 | BuiltProjectOutputGroupDependsOn = PrepareForBuild | |
|
4250 | CheckForOverflowUnderflow = false | |
|
4251 | CHROME_DESKTOP = Code.desktop | |
|
4252 | CleanDependsOn = | |
|
4253 | BeforeClean; | |
|
4254 | UnmanagedUnregistration; | |
|
4255 | CoreClean; | |
|
4256 | CleanReferencedProjects; | |
|
4257 | CleanPublishFolder; | |
|
4258 | AfterClean | |
|
4259 | ||
|
4260 | CleanFile = Implab.csproj.FileListAbsolute.txt | |
|
4261 | CodeAnalysisTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/CodeAnalysis/Microsoft.CodeAnalysis.targets | |
|
4262 | COLORTERM = 1 | |
|
4263 | CommonMonoTargetsPath = Microsoft.Common.Mono.targets | |
|
4264 | CommonTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets | |
|
4265 | CommonXamlResourcesDirectory = /usr/lib/mono/msbuild/15.0/bin/ | |
|
4266 | Company = Sergey Smirnov | |
|
4267 | CompileDependsOn = | |
|
4268 | ResolveReferences; | |
|
4269 | ResolveKeySource; | |
|
4270 | SetWin32ManifestProperties; | |
|
4271 | FindReferenceAssembliesForReferences; | |
|
4272 | _GenerateCompileInputs; | |
|
4273 | BeforeCompile; | |
|
4274 | _TimeStampBeforeCompile; | |
|
4275 | _GenerateCompileDependencyCache; | |
|
4276 | CoreCompile; | |
|
4277 | _TimeStampAfterCompile; | |
|
4278 | AfterCompile; | |
|
4279 | ||
|
4280 | CompileLicxFilesDependsOn = | |
|
4281 | ComputeIntermediateSatelliteAssembliesDependsOn = | |
|
4282 | CreateManifestResourceNames | |
|
4283 | ||
|
4284 | ComReferenceExecuteAsTool = false | |
|
4285 | ComReferenceNoClassMembers = false | |
|
4286 | Configuration = Debug | |
|
4287 | ConfigurationName = Debug | |
|
4288 | Configurations = Debug;Release | |
|
4289 | ConsiderPlatformAsProcessorArchitecture = true | |
|
4290 | ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
4291 | ContentPreprocessorOutputDirectory = obj\Debug\netstandard2.0\NuGet\ | |
|
4292 | ContentTargetFolders = content;contentFiles | |
|
4293 | ContinueOnError = false | |
|
4294 | CopyLocalLockFileAssemblies = false | |
|
4295 | Copyright = 2012-2018 Sergey Smirnov | |
|
4296 | CoreBuildDependsOn = | |
|
4297 | ||
|
4298 | BuildOnlySettings; | |
|
4299 | PrepareForBuild; | |
|
4300 | PreBuildEvent; | |
|
4301 | ResolveReferences; | |
|
4302 | PrepareResources; | |
|
4303 | ResolveKeySource; | |
|
4304 | Compile; | |
|
4305 | ExportWindowsMDFile; | |
|
4306 | UnmanagedUnregistration; | |
|
4307 | GenerateSerializationAssemblies; | |
|
4308 | CreateSatelliteAssemblies; | |
|
4309 | GenerateManifests; | |
|
4310 | GetTargetPath; | |
|
4311 | PrepareForRun; | |
|
4312 | UnmanagedRegistration; | |
|
4313 | IncrementalClean; | |
|
4314 | PostBuildEvent | |
|
4315 | ; | |
|
4316 | GenerateBuildDependencyFile; | |
|
4317 | GenerateBuildRuntimeConfigurationFiles | |
|
4318 | ||
|
4319 | CoreCleanDependsOn = | |
|
4320 | CoreCompileDependsOn = _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet | |
|
4321 | CoreResGenDependsOn = FindReferenceAssembliesForReferences | |
|
4322 | CPU = x86_64 | |
|
4323 | CreateCustomManifestResourceNamesDependsOn = | |
|
4324 | CreateHardLinksForCopyAdditionalFilesIfPossible = false | |
|
4325 | CreateManifestResourceNamesDependsOn = | |
|
4326 | CreateSatelliteAssembliesDependsOn = | |
|
4327 | ||
|
4328 | _GenerateSatelliteAssemblyInputs; | |
|
4329 | ComputeIntermediateSatelliteAssemblies; | |
|
4330 | GenerateSatelliteAssemblies | |
|
4331 | ; | |
|
4332 | CoreGenerateSatelliteAssemblies | |
|
4333 | ||
|
4334 | CreateSymbolicLinksForCopyAdditionalFilesIfPossible = false | |
|
4335 | CscToolPath = /usr/lib/mono/4.5/ | |
|
4336 | CSharpCoreTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets | |
|
4337 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
4338 | CSharpMonoTargetsPath = Microsoft.CSharp.Mono.targets | |
|
4339 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets | |
|
4340 | CSHEDIT = emacs | |
|
4341 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
4342 | CustomAfterMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.targets | |
|
4343 | CustomAfterMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.CSharp.targets | |
|
4344 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
4345 | CustomBeforeMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.targets | |
|
4346 | CustomBeforeMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.CSharp.targets | |
|
4347 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
4348 | DebugSymbols = true | |
|
4349 | DebugSymbolsProjectOutputGroupDependsOn = | |
|
4350 | DebugType = portable | |
|
4351 | DefaultCopyToPublishDirectoryMetadata = true | |
|
4352 | DefaultExcludesInProjectFolder = ;**/.*/** | |
|
4353 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
4354 | DefaultItemExcludes = ;bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;packages/** | |
|
4355 | DefaultLanguageSourceExtension = .cs | |
|
4356 | DefaultProjectTypeGuid = {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
|
4357 | DefineCommonCapabilities = true | |
|
4358 | DefineCommonItemSchemas = true | |
|
4359 | DefineCommonReferenceSchemas = true | |
|
4360 | DefineConstants = TRACE;DEBUG;NETSTANDARD2_0 | |
|
4361 | DelaySign = | |
|
4362 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
4363 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
4364 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
4365 | ||
|
4366 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
4367 | DesignTimeAutoUnify = true | |
|
4368 | DesignTimeResolveAssemblyReferencesDependsOn = | |
|
4369 | GetFrameworkPaths; | |
|
4370 | GetReferenceAssemblyPaths; | |
|
4371 | ResolveReferences | |
|
4372 | ||
|
4373 | DESKTOP_SESSION = gnome | |
|
4374 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
4375 | Deterministic = true | |
|
4376 | DevEnvDir = *Undefined* | |
|
4377 | DisableHandlePackageFileConflicts = true | |
|
4378 | DisableStandardFrameworkResolution = true | |
|
4379 | DISPLAY = :0 | |
|
4380 | DocumentationFile = | |
|
4381 | DocumentationProjectOutputGroupDependsOn = | |
|
4382 | EmbeddedWin32Manifest = | |
|
4383 | EmitAssetsLogMessages = true | |
|
4384 | EmitsDependencyDiagnosticMessages = | |
|
4385 | ReportAssetsLogMessages; | |
|
4386 | ||
|
4387 | RunResolvePackageDependencies; | |
|
4388 | ||
|
4389 | ||
|
4390 | ||
|
4391 | EnableDefaultCompileItems = true | |
|
4392 | EnableDefaultEmbeddedResourceItems = true | |
|
4393 | EnableDefaultItems = true | |
|
4394 | EnableDefaultNoneItems = true | |
|
4395 | EnableFrameworkPathOverride = false | |
|
4396 | ErrorReport = prompt | |
|
4397 | ExcludeRestorePackageImports = true | |
|
4398 | ExecuteAsTool = false | |
|
4399 | ExpandSDKAllowedReferenceExtensions = | |
|
4400 | .winmd; | |
|
4401 | .dll | |
|
4402 | ||
|
4403 | ExpandSDKReferencesDependsOn = | |
|
4404 | ResolveSDKReferences | |
|
4405 | ||
|
4406 | FileAlignment = 512 | |
|
4407 | FilterDeniedAssemblies = false | |
|
4408 | FindInvalidProjectReferencesDependsOn = | |
|
4409 | GetReferenceTargetPlatformMonikers | |
|
4410 | ||
|
4411 | Framework20Dir = @(_TargetFramework20DirectoryItem) | |
|
4412 | Framework30Dir = @(_TargetFramework30DirectoryItem) | |
|
4413 | Framework35Dir = @(_TargetFramework35DirectoryItem) | |
|
4414 | Framework40Dir = @(_TargetFramework40DirectoryItem) | |
|
4415 | FrameworkDir = @(_TargetFramework20DirectoryItem) | |
|
4416 | FrameworkPathOverride = | |
|
4417 | FrameworkRegistryBase = Software\Microsoft\.NETStandard | |
|
4418 | FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem) | |
|
4419 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
4420 | FROM_HEADER = | |
|
4421 | FullReferenceAssemblyNames = Full | |
|
4422 | G_BROKEN_FILENAMES = 1 | |
|
4423 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
4424 | GDMSESSION = gnome | |
|
4425 | GenerateAssemblyCompanyAttribute = true | |
|
4426 | GenerateAssemblyConfigurationAttribute = true | |
|
4427 | GenerateAssemblyCopyrightAttribute = true | |
|
4428 | GenerateAssemblyDescriptionAttribute = true | |
|
4429 | GenerateAssemblyFileVersionAttribute = true | |
|
4430 | GenerateAssemblyInfo = true | |
|
4431 | GenerateAssemblyInformationalVersionAttribute = true | |
|
4432 | GenerateAssemblyProductAttribute = true | |
|
4433 | GenerateAssemblyTitleAttribute = true | |
|
4434 | GenerateAssemblyVersionAttribute = true | |
|
4435 | GeneratedAssemblyInfoFile = obj\Debug\netstandard2.0\Implab.AssemblyInfo.cs | |
|
4436 | GenerateDependencyFile = true | |
|
4437 | GenerateDocumentationFile = false | |
|
4438 | GenerateManifestsDependsOn = | |
|
4439 | GenerateNeutralResourcesLanguageAttribute = true | |
|
4440 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
4441 | GeneratePackageOnBuild = false | |
|
4442 | GenerateResourceMSBuildArchitecture = CurrentArchitecture | |
|
4443 | GenerateResourceMSBuildRuntime = CurrentRuntime | |
|
4444 | GenerateSerializationAssemblies = Off | |
|
4445 | GenerateTargetFrameworkAttribute = true | |
|
4446 | GetCopyToOutputDirectoryItemsDependsOn = | |
|
4447 | AssignTargetPaths; | |
|
4448 | _SplitProjectReferencesByFileExistence; | |
|
4449 | _GetProjectReferenceTargetFrameworkProperties | |
|
4450 | ||
|
4451 | GetFrameworkPathsDependsOn = | |
|
4452 | GetTargetPathDependsOn = | |
|
4453 | GetTargetPathWithTargetPlatformMonikerDependsOn = | |
|
4454 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
4455 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
4456 | GJS_DEBUG_OUTPUT = stderr | |
|
4457 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
4458 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
4459 | GPG_TTY = /dev/pts/1 | |
|
4460 | HasRuntimeOutput = | |
|
4461 | HideWarningsAndErrors = false | |
|
4462 | HISTSIZE = 1000 | |
|
4463 | HOME = /home/sergey | |
|
4464 | HOST = chamber | |
|
4465 | HOSTNAME = chamber | |
|
4466 | HOSTTYPE = x86_64 | |
|
4467 | ImplicitConfigurationDefine = DEBUG | |
|
4468 | ImplicitFrameworkDefine = NETSTANDARD2_0 | |
|
4469 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
4470 | ImportByWildcardAfterMicrosoftCommonTargets = true | |
|
4471 | ImportByWildcardAfterMicrosoftCSharpTargets = true | |
|
4472 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
4473 | ImportByWildcardBeforeMicrosoftCommonTargets = true | |
|
4474 | ImportByWildcardBeforeMicrosoftCSharpTargets = true | |
|
4475 | ImportDirectoryBuildProps = true | |
|
4476 | ImportDirectoryBuildTargets = true | |
|
4477 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
4478 | ImportProjectExtensionProps = true | |
|
4479 | ImportProjectExtensionTargets = true | |
|
4480 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
4481 | ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true | |
|
4482 | ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true | |
|
4483 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
4484 | ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true | |
|
4485 | ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true | |
|
4486 | IncludeBuildOutput = true | |
|
4487 | IncludeContentInPack = true | |
|
4488 | IncludeMainProjectInDepsFile = true | |
|
4489 | IntermediateOutputPath = obj\Debug\netstandard2.0\ | |
|
4490 | IsInnerBuild = true | |
|
4491 | IsPackable = true | |
|
4492 | IsPublishable = true | |
|
4493 | IsRestoreTargetsFileLoaded = true | |
|
4494 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
4495 | JAVA_HOME = /usr/lib64/jvm/java | |
|
4496 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
4497 | JDK_HOME = /usr/lib64/jvm/java | |
|
4498 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
4499 | LANG = en_US.UTF-8 | |
|
4500 | Language = C# | |
|
4501 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
4502 | LC_CTYPE = ru_RU.UTF-8 | |
|
4503 | LESS = -M -I -R | |
|
4504 | LESS_ADVANCED_PREPROCESSOR = no | |
|
4505 | LESSCLOSE = lessclose.sh %s %s | |
|
4506 | LESSKEY = /etc/lesskey.bin | |
|
4507 | LESSOPEN = lessopen.sh %s | |
|
4508 | LocalAppData = /home/sergey/.local/share | |
|
4509 | LOGNAME = sergey | |
|
4510 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
4511 | LS_OPTIONS = -N --color=tty -T 0 | |
|
4512 | MACHTYPE = x86_64-suse-linux | |
|
4513 | MAIL = /var/spool/mail/sergey | |
|
4514 | MANPATH = /usr/local/man:/usr/share/man | |
|
4515 | MaxTargetPath = 100 | |
|
4516 | MicrosoftCommonPropsHasBeenImported = true | |
|
4517 | MicrosoftNETBuildExtensionsTargets = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets | |
|
4518 | MicrosoftNETBuildExtensionsTasksAssembly = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/tools/net46/Microsoft.NET.Build.Extensions.Tasks.dll | |
|
4519 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
4520 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
4521 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
4522 | MicrosoftNETBuildTasksTFM = net46 | |
|
4523 | MINICOM = -c on | |
|
4524 | MONO_GC_PARAMS = nursery-size=64m, | |
|
4525 | MORE = -sl | |
|
4526 | MsAppxPackageTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/AppxPackage/Microsoft.AppXPackage.Targets | |
|
4527 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
4528 | MSBuildAssemblyVersion = 15.0 | |
|
4529 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
4530 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
4531 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
4532 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
4533 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
4534 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
4535 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
4536 | MSBuildLastTaskResult = true | |
|
4537 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
4538 | MSBuildNodeCount = 1 | |
|
4539 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
4540 | MSBuildProjectDefaultTargets = Build | |
|
4541 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
4542 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
4543 | MSBuildProjectExtension = .csproj | |
|
4544 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
4545 | MSBuildProjectFile = Implab.csproj | |
|
4546 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4547 | MSBuildProjectName = Implab | |
|
4548 | MSBuildRuntimeType = Mono | |
|
4549 | MSBuildRuntimeVersion = 4.0.30319 | |
|
4550 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
4551 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
4552 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
4553 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
4554 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
4555 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
4556 | MSBuildToolsVersion = 15.0 | |
|
4557 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
4558 | MsTestToolsTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/TeamTest/Microsoft.TeamTest.targets | |
|
4559 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
4560 | NETStandardImplicitPackageVersion = 1.6.1 | |
|
4561 | NETStandardMaximumVersion = | |
|
4562 | NNTPSERVER = news | |
|
4563 | NoCompilerStandardLib = true | |
|
4564 | NoLogo = true | |
|
4565 | NoStdLib = true | |
|
4566 | NoWarn = 1701;1702;1705 | |
|
4567 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
4568 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
4569 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
4570 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
4571 | NuGetTargetMoniker = .NETStandard,Version=v2.0 | |
|
4572 | NuGetTargets = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.targets | |
|
4573 | NuspecOutputPath = obj\Debug\ | |
|
4574 | Optimize = false | |
|
4575 | OS = Unix | |
|
4576 | OSTYPE = linux | |
|
4577 | OutDir = bin\Debug\netstandard2.0\ | |
|
4578 | OutputPath = bin\Debug\netstandard2.0\ | |
|
4579 | OutputType = Library | |
|
4580 | OverwriteReadOnlyFiles = false | |
|
4581 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
4582 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
4583 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
4584 | ||
|
4585 | PackageId = Implab | |
|
4586 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
4587 | PackageOutputPath = bin\Debug\ | |
|
4588 | PackageProjectUrl = https://implab.org | |
|
4589 | PackageRequireLicenseAcceptance = false | |
|
4590 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
4591 | PackageVersion = 3.0.10 | |
|
4592 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
4593 | PAGER = less | |
|
4594 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
4595 | Platform = AnyCPU | |
|
4596 | PlatformName = AnyCPU | |
|
4597 | Platforms = AnyCPU | |
|
4598 | PlatformTargetAsMSBuildArchitecture = CurrentArchitecture | |
|
4599 | PlatformTargetAsMSBuildArchitectureExplicitlySet = false | |
|
4600 | PostBuildEventDependsOn = | |
|
4601 | PreBuildEventDependsOn = | |
|
4602 | Prefer32Bit = false | |
|
4603 | PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata | |
|
4604 | PrepareForRunDependsOn = | |
|
4605 | CopyFilesToOutputDirectory | |
|
4606 | ||
|
4607 | PrepareProjectReferencesDependsOn = | |
|
4608 | AssignProjectConfiguration; | |
|
4609 | _SplitProjectReferencesByFileExistence; | |
|
4610 | _GetProjectReferenceTargetFrameworkProperties | |
|
4611 | ||
|
4612 | PrepareResourceNamesDependsOn = | |
|
4613 | AssignTargetPaths; | |
|
4614 | SplitResourcesByCulture; | |
|
4615 | CreateManifestResourceNames; | |
|
4616 | CreateCustomManifestResourceNames | |
|
4617 | ||
|
4618 | PrepareResourcesDependsOn = | |
|
4619 | ResolvePackageDependenciesForBuild; | |
|
4620 | _HandlePackageFileConflicts; | |
|
4621 | ||
|
4622 | PrepareResourceNames; | |
|
4623 | ResGen; | |
|
4624 | CompileLicxFiles | |
|
4625 | ||
|
4626 | ||
|
4627 | ProcessorArchitecture = msil | |
|
4628 | ProcessorArchitectureAsPlatform = AnyCPU | |
|
4629 | ProduceOnlyPreprocessorFilesInBuildTask = true | |
|
4630 | ProduceReferenceAssembly = false | |
|
4631 | Product = Implab | |
|
4632 | PROFILEREAD = true | |
|
4633 | ProjectAssetsFile = /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
4634 | ProjectDepsFileName = Implab.deps.json | |
|
4635 | ProjectDepsFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.deps.json | |
|
4636 | ProjectDesignTimeAssemblyResolutionSearchPaths = | |
|
4637 | {CandidateAssemblyFiles}; | |
|
4638 | ; | |
|
4639 | {HintPathFromItem}; | |
|
4640 | {TargetFrameworkDirectory}; | |
|
4641 | {Registry:Software\Microsoft\.NETStandard,v2.0,AssemblyFoldersEx}; | |
|
4642 | {RawFileName}; | |
|
4643 | /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
4644 | ||
|
4645 | ProjectDir = /home/sergey/projects/ImplabNet/Implab/ | |
|
4646 | ProjectExt = .csproj | |
|
4647 | ProjectFileName = Implab.csproj | |
|
4648 | ProjectFlavor = Client | |
|
4649 | ProjectName = Implab | |
|
4650 | ProjectPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
4651 | ProjectRuntimeConfigDevFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.dev.json | |
|
4652 | ProjectRuntimeConfigFileName = Implab.runtimeconfig.json | |
|
4653 | ProjectRuntimeConfigFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.json | |
|
4654 | PublishableProject = | |
|
4655 | PublishBuildDependsOn = | |
|
4656 | BuildOnlySettings; | |
|
4657 | PrepareForBuild; | |
|
4658 | ResolveReferences; | |
|
4659 | PrepareResources; | |
|
4660 | ResolveKeySource; | |
|
4661 | GenerateSerializationAssemblies; | |
|
4662 | CreateSatelliteAssemblies; | |
|
4663 | ||
|
4664 | PublishDependsOn = | |
|
4665 | _DeploymentUnpublishable | |
|
4666 | ||
|
4667 | PublishDir = bin\Debug\netstandard2.0\publish\ | |
|
4668 | PublishDirName = publish | |
|
4669 | PublishDocumentationFile = true | |
|
4670 | PublishDocumentationFiles = true | |
|
4671 | PublishOnlyDependsOn = | |
|
4672 | SetGenerateManifests; | |
|
4673 | PublishBuild; | |
|
4674 | BeforePublish; | |
|
4675 | GenerateManifests; | |
|
4676 | CopyFilesToOutputDirectory; | |
|
4677 | _CopyFilesToPublishFolder; | |
|
4678 | _DeploymentGenerateBootstrapper; | |
|
4679 | ResolveKeySource; | |
|
4680 | _DeploymentSignClickOnceDeployment; | |
|
4681 | AfterPublish | |
|
4682 | ||
|
4683 | PublishReferencesDocumentationFiles = true | |
|
4684 | PWD = /home/sergey/projects/ImplabNet | |
|
4685 | PYTHONSTARTUP = /etc/pythonstart | |
|
4686 | QEMU_AUDIO_DRV = pa | |
|
4687 | QT_IM_MODULE = ibus | |
|
4688 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
4689 | RebuildDependsOn = | |
|
4690 | BeforeRebuild; | |
|
4691 | Clean; | |
|
4692 | Build; | |
|
4693 | AfterRebuild; | |
|
4694 | ||
|
4695 | RefAssembliesFolderName = refs | |
|
4696 | ReportingServicesTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/ReportingServices/Microsoft.ReportingServices.targets | |
|
4697 | RepositoryType = mercurial | |
|
4698 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
4699 | ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen | |
|
4700 | ResGenExecuteAsTool = false | |
|
4701 | ResolveAssemblyReferencesDependsOn = | |
|
4702 | ||
|
4703 | GetFrameworkPaths; | |
|
4704 | GetReferenceAssemblyPaths; | |
|
4705 | PrepareForBuild; | |
|
4706 | ResolveSDKReferences; | |
|
4707 | ExpandSDKReferences; | |
|
4708 | ; | |
|
4709 | ResolvePackageDependenciesForBuild; | |
|
4710 | _HandlePackageFileConflicts; | |
|
4711 | ||
|
4712 | ResolveNuGetPackages = false | |
|
4713 | ResolvePackageDependenciesForBuild = true | |
|
4714 | ResolvePackageDependenciesForBuildDependsOn = | |
|
4715 | ResolveLockFileReferences; | |
|
4716 | ResolveLockFileAnalyzers; | |
|
4717 | ResolveLockFileCopyLocalProjectDeps; | |
|
4718 | IncludeTransitiveProjectReferences | |
|
4719 | ||
|
4720 | ResolveReferencesDependsOn = | |
|
4721 | BeforeResolveReferences; | |
|
4722 | AssignProjectConfiguration; | |
|
4723 | ResolveProjectReferences; | |
|
4724 | FindInvalidProjectReferences; | |
|
4725 | ResolveNativeReferences; | |
|
4726 | ResolveAssemblyReferences; | |
|
4727 | GenerateBindingRedirects; | |
|
4728 | ResolveComReferences; | |
|
4729 | AfterResolveReferences | |
|
4730 | ||
|
4731 | ResolveSDKReferencesDependsOn = | |
|
4732 | GetInstalledSDKLocations | |
|
4733 | ||
|
4734 | RestoreContinueOnError = WarnAndContinue | |
|
4735 | RestoreProjectStyle = PackageReference | |
|
4736 | RestoreRecursive = true | |
|
4737 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
4738 | RestoreUseCustomAfterTargets = | |
|
4739 | RootNamespace = Implab | |
|
4740 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
4741 | RunDependsOn = | |
|
4742 | RunWorkingDirectory = | |
|
4743 | SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames | |
|
4744 | SDK_HOME = /usr/lib64/jvm/java | |
|
4745 | SDK35ToolsPath = / | |
|
4746 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
4747 | SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences | |
|
4748 | SDKReferenceDirectoryRoot = /home/sergey/.local/share/Microsoft SDKs;/usr/lib/mono/xbuild/Microsoft SDKs | |
|
4749 | SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs | |
|
4750 | SDL_AUDIODRIVER = pulse | |
|
4751 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
4752 | SGenFilesOutputGroupDependsOn = | |
|
4753 | SGenShouldGenerateSerializer = true | |
|
4754 | SGenUseKeep = false | |
|
4755 | SGenUseProxyTypes = true | |
|
4756 | SHELL = /bin/bash | |
|
4757 | SHLVL = 3 | |
|
4758 | ShouldMarkCertainSDKReferencesAsRuntimeOnly = true | |
|
4759 | SignAssembly = false | |
|
4760 | SkipCopyUnchangedFiles = true | |
|
4761 | SkipImportNuGetBuildTargets = true | |
|
4762 | SkipImportNuGetProps = true | |
|
4763 | SolutionDir = *Undefined* | |
|
4764 | SolutionExt = *Undefined* | |
|
4765 | SolutionFileName = *Undefined* | |
|
4766 | SolutionName = *Undefined* | |
|
4767 | SolutionPath = *Undefined* | |
|
4768 | SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
4769 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
4770 | TargetCulture = * | |
|
4771 | TargetDeployManifestFileName = Implab.application | |
|
4772 | TargetDir = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
4773 | TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem) | |
|
4774 | TargetedSDKArchitecture = msil | |
|
4775 | TargetedSDKConfiguration = Debug | |
|
4776 | TargetExt = .dll | |
|
4777 | TargetFileName = Implab.dll | |
|
4778 | TargetFramework = netstandard2.0 | |
|
4779 | TargetFrameworkAsMSBuildRuntime = CLR2 | |
|
4780 | TargetFrameworkDirectory = | |
|
4781 | TargetFrameworkIdentifier = .NETStandard | |
|
4782 | TargetFrameworkMoniker = .NETStandard,Version=v2.0 | |
|
4783 | TargetFrameworkMonikerAssemblyAttributesPath = /tmp/.NETStandard,Version=v2.0.AssemblyAttributes.cs | |
|
4784 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
4785 | TargetFrameworks = netstandard2.0 | |
|
4786 | TargetFrameworkVersion = v2.0 | |
|
4787 | TargetName = Implab | |
|
4788 | TargetPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
4789 | TargetPlatformDisplayName = Windows 7.0 | |
|
4790 | TargetPlatformIdentifier = Windows | |
|
4791 | TargetPlatformMoniker = Windows,Version=7.0 | |
|
4792 | TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows | |
|
4793 | TargetPlatformSdkPath = | |
|
4794 | TargetPlatformVersion = 7.0 | |
|
4795 | TargetRuntime = Managed | |
|
4796 | TERM = xterm | |
|
4797 | TERM_PROGRAM = vscode | |
|
4798 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
4799 | Title = Implab library | |
|
4800 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
4801 | TreatWarningsAsErrors = false | |
|
4802 | UnmanagedRegistrationDependsOn = | |
|
4803 | UnmanagedUnregistrationDependsOn = | |
|
4804 | UseCommonOutputDirectory = false | |
|
4805 | UseHostCompilerIfAvailable = true | |
|
4806 | USER = sergey | |
|
4807 | USERNAME = sergey | |
|
4808 | UserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
4809 | UserRuntimeConfig = /home/sergey/projects/ImplabNet/Implab/runtimeconfig.template.json | |
|
4810 | UseSourcePath = true | |
|
4811 | UsingMicrosoftNETSdk = true | |
|
4812 | Utf8Output = true | |
|
4813 | ValidateRuntimeIdentifierCompatibility = false | |
|
4814 | Version = 3.0.10 | |
|
4815 | VisualStudioVersion = 15.0 | |
|
4816 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
4817 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
4818 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
4819 | VSCODE_PID = 32392 | |
|
4820 | WarningLevel = 4 | |
|
4821 | WarningsAsErrors = NU1605 | |
|
4822 | WAYLAND_DISPLAY = wayland-0 | |
|
4823 | WebReference_EnableLegacyEventingModel = false | |
|
4824 | WebReference_EnableProperties = true | |
|
4825 | WebReference_EnableSQLTypes = true | |
|
4826 | WINDOWMANAGER = /usr/bin/gnome | |
|
4827 | WMSJSProject = WJProject | |
|
4828 | WMSJSProjectDirectory = JavaScript | |
|
4829 | XAUTHLOCALHOSTNAME = chamber | |
|
4830 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
4831 | XCURSOR_THEME = DMZ | |
|
4832 | XDG_CONFIG_DIRS = /etc/xdg | |
|
4833 | XDG_CURRENT_DESKTOP = GNOME | |
|
4834 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
4835 | XDG_MENU_PREFIX = gnome- | |
|
4836 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
4837 | XDG_SEAT = seat0 | |
|
4838 | XDG_SESSION_DESKTOP = gnome | |
|
4839 | XDG_SESSION_ID = 1 | |
|
4840 | XDG_SESSION_TYPE = wayland | |
|
4841 | XDG_VTNR = 2 | |
|
4842 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
4843 | XMODIFIERS = @im=ibus | |
|
4844 | XNLSPATH = /usr/share/X11/nls | |
|
4845 | YieldDuringToolExecution = true | |
|
4846 | ||
|
4847 | Initial Items: | |
|
4848 | _ApplicationManifestFinal | |
|
4849 | bin/Debug/netstandard2.0/Native.Implab.manifest | |
|
4850 | TargetPath = Native.Implab.manifest | |
|
4851 | _DebugSymbolsIntermediatePath | |
|
4852 | obj/Debug/netstandard2.0/Implab.pdb | |
|
4853 | _DebugSymbolsOutputPath | |
|
4854 | bin/Debug/netstandard2.0/Implab.pdb | |
|
4855 | _DeploymentManifestEntryPoint | |
|
4856 | obj/Debug/netstandard2.0/Implab.dll | |
|
4857 | TargetPath = Implab.dll | |
|
4858 | _ImplicitPackageReference | |
|
4859 | NETStandard.Library | |
|
4860 | Version = 1.6.1 | |
|
4861 | IsImplicitlyDefined = true | |
|
4862 | PrivateAssets = All | |
|
4863 | Publish = true | |
|
4864 | _ImplicitPackageReferenceCheck | |
|
4865 | NETStandard.Library | |
|
4866 | Version = 1.6.1 | |
|
4867 | IsImplicitlyDefined = true | |
|
4868 | PrivateAssets = All | |
|
4869 | Publish = true | |
|
4870 | _OutputPathItem | |
|
4871 | bin/Debug/netstandard2.0/ | |
|
4872 | _ResolveComReferenceCache | |
|
4873 | obj/Debug/netstandard2.0/Implab.csproj.ResolveComReference.cache | |
|
4874 | _RestoreSettingsPerFramework | |
|
4875 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
4876 | RestoreAdditionalProjectSources = | |
|
4877 | RestoreAdditionalProjectFallbackFolders = | |
|
4878 | RestoreAdditionalProjectFallbackFoldersExcludes = | |
|
4879 | _UnmanagedRegistrationCache | |
|
4880 | obj/Implab.csproj.UnmanagedRegistration.cache | |
|
4881 | AppConfigFileDestination | |
|
4882 | bin/Debug/netstandard2.0/Implab.dll.config | |
|
4883 | ApplicationManifest | |
|
4884 | obj/Debug/netstandard2.0/Native.Implab.manifest | |
|
4885 | TargetPath = Native.Implab.manifest | |
|
4886 | BuiltProjectOutputGroupKeyOutput | |
|
4887 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.dll | |
|
4888 | IsKeyOutput = true | |
|
4889 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
4890 | TargetPath = Implab.dll | |
|
4891 | Compile | |
|
4892 | AbstractEvent.cs | |
|
4893 | Automaton/AutomatonConst.cs | |
|
4894 | Automaton/AutomatonTransition.cs | |
|
4895 | Automaton/DFATable.cs | |
|
4896 | Automaton/IAlphabet.cs | |
|
4897 | Automaton/IAlphabetBuilder.cs | |
|
4898 | Automaton/IDFATable.cs | |
|
4899 | Automaton/IDFATableBuilder.cs | |
|
4900 | Automaton/IndexedAlphabetBase.cs | |
|
4901 | Automaton/MapAlphabet.cs | |
|
4902 | Automaton/ParserException.cs | |
|
4903 | Automaton/RegularExpressions/AltToken.cs | |
|
4904 | Automaton/RegularExpressions/BinaryToken.cs | |
|
4905 | Automaton/RegularExpressions/CatToken.cs | |
|
4906 | Automaton/RegularExpressions/EmptyToken.cs | |
|
4907 | Automaton/RegularExpressions/EndToken.cs | |
|
4908 | Automaton/RegularExpressions/EndTokenT.cs | |
|
4909 | Automaton/RegularExpressions/ITaggedDFABuilder.cs | |
|
4910 | Automaton/RegularExpressions/IVisitor.cs | |
|
4911 | Automaton/RegularExpressions/RegularDFA.cs | |
|
4912 | Automaton/RegularExpressions/RegularExpressionVisitor.cs | |
|
4913 | Automaton/RegularExpressions/RegularExpressionVisitorT.cs | |
|
4914 | Automaton/RegularExpressions/StarToken.cs | |
|
4915 | Automaton/RegularExpressions/SymbolToken.cs | |
|
4916 | Automaton/RegularExpressions/Token.cs | |
|
4917 | Components/Disposable.cs | |
|
4918 | Components/DisposablePool.cs | |
|
4919 | Components/ExecutionState.cs | |
|
4920 | Components/IAsyncComponent.cs | |
|
4921 | Components/IFactory.cs | |
|
4922 | Components/IInitializable.cs | |
|
4923 | Components/IRunnable.cs | |
|
4924 | Components/IServiceLocator.cs | |
|
4925 | Components/LazyAndWeak.cs | |
|
4926 | Components/ObjectPool.cs | |
|
4927 | Components/PollingComponent.cs | |
|
4928 | Components/RunnableComponent.cs | |
|
4929 | Components/ServiceLocator.cs | |
|
4930 | Components/StateChangeEventArgs.cs | |
|
4931 | CustomEqualityComparer.cs | |
|
4932 | Deferred.cs | |
|
4933 | Deferred`1.cs | |
|
4934 | Diagnostics/ActivityScope.cs | |
|
4935 | Diagnostics/LogicalOperation.cs | |
|
4936 | Diagnostics/LogicalOperationScope.cs | |
|
4937 | Diagnostics/SimpleTraceListener.cs | |
|
4938 | Diagnostics/Trace.cs | |
|
4939 | Diagnostics/TraceEventCodes.cs | |
|
4940 | Diagnostics/TraceSourceAttribute.cs | |
|
4941 | ExceptionHelpers.cs | |
|
4942 | Formats/ByteAlphabet.cs | |
|
4943 | Formats/CharAlphabet.cs | |
|
4944 | Formats/CharMap.cs | |
|
4945 | Formats/FastInpurScanner.cs | |
|
4946 | Formats/Grammar.cs | |
|
4947 | Formats/InputScanner.cs | |
|
4948 | Formats/Json/JsonElementContext.cs | |
|
4949 | Formats/Json/JsonElementType.cs | |
|
4950 | Formats/Json/JsonGrammar.cs | |
|
4951 | Formats/Json/JsonReader.cs | |
|
4952 | Formats/Json/JsonScanner.cs | |
|
4953 | Formats/Json/JsonStringScanner.cs | |
|
4954 | Formats/Json/JsonTextScanner.cs | |
|
4955 | Formats/Json/JsonTokenType.cs | |
|
4956 | Formats/Json/JsonWriter.cs | |
|
4957 | Formats/Json/StringTranslator.cs | |
|
4958 | IDispatcher.cs | |
|
4959 | IPromise.cs | |
|
4960 | IPromiseT.cs | |
|
4961 | IResolvable.cs | |
|
4962 | IResolvable`1.cs | |
|
4963 | Messaging/IConsumer.cs | |
|
4964 | Messaging/IProducer.cs | |
|
4965 | Messaging/ISession.cs | |
|
4966 | Parallels/AsyncQueue.cs | |
|
4967 | Parallels/BlockingQueue.cs | |
|
4968 | Parallels/DispatchPool.cs | |
|
4969 | Parallels/SharedLock.cs | |
|
4970 | Parallels/Signal.cs | |
|
4971 | Parallels/SimpleAsyncQueue.cs | |
|
4972 | Parallels/SyncContextDispatcher.cs | |
|
4973 | Parallels/ThreadPoolDispatcher.cs | |
|
4974 | Promise.cs | |
|
4975 | Promise`1.cs | |
|
4976 | PromiseActionReaction.cs | |
|
4977 | PromiseActionReaction`1.cs | |
|
4978 | PromiseAll.cs | |
|
4979 | PromiseAll`1.cs | |
|
4980 | PromiseAwaiter.cs | |
|
4981 | PromiseAwaiter`1.cs | |
|
4982 | PromiseExecutor.cs | |
|
4983 | PromiseExecutor`1.cs | |
|
4984 | PromiseExtensions.cs | |
|
4985 | PromiseFuncReaction`1.cs | |
|
4986 | PromiseFuncReaction`2.cs | |
|
4987 | PromiseHandler.cs | |
|
4988 | PromiseState.cs | |
|
4989 | PromiseTransientException.cs | |
|
4990 | RejectedPromise.cs | |
|
4991 | RejectedPromise`1.cs | |
|
4992 | ResolvedPromise.cs | |
|
4993 | ResolvedPromise`1.cs | |
|
4994 | Safe.cs | |
|
4995 | TaskHelpers.cs | |
|
4996 | Xml/JsonXmlCaseTransform.cs | |
|
4997 | Xml/JsonXmlReader.cs | |
|
4998 | Xml/JsonXmlReaderOptions.cs | |
|
4999 | Xml/JsonXmlReaderPosition.cs | |
|
5000 | Xml/SerializationHelpers.cs | |
|
5001 | Xml/SerializersPool.cs | |
|
5002 | Xml/XmlNameContext.cs | |
|
5003 | Xml/XmlSimpleAttribute.cs | |
|
5004 | Xml/XmlToJson.cs | |
|
5005 | CopyUpToDateMarker | |
|
5006 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.csproj.CopyComplete | |
|
5007 | DebugSymbolsProjectOutputGroupOutput | |
|
5008 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.pdb | |
|
5009 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.pdb | |
|
5010 | TargetPath = Implab.pdb | |
|
5011 | DeployManifest | |
|
5012 | obj/Debug/netstandard2.0/Implab.application | |
|
5013 | TargetPath = Implab.application | |
|
5014 | EmbeddedResource | |
|
5015 | Xml/json.xsl | |
|
5016 | GenerateRuntimeConfigurationFilesInputs | |
|
5017 | /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
5018 | IntermediateAssembly | |
|
5019 | obj/Debug/netstandard2.0/Implab.dll | |
|
5020 | None | |
|
5021 | Implab.nuspec | |
|
5022 | implab.snk | |
|
5023 | license.txt | |
|
5024 | Xml/json.xsl | |
|
5025 | Xml/readme.txt | |
|
5026 | PackageReference | |
|
5027 | NETStandard.Library | |
|
5028 | Version = 1.6.1 | |
|
5029 | IsImplicitlyDefined = true | |
|
5030 | PrivateAssets = All | |
|
5031 | Publish = true | |
|
5032 | PreprocessorValue | |
|
5033 | assemblyname | |
|
5034 | Value = Implab | |
|
5035 | filename | |
|
5036 | Value = Implab.csproj | |
|
5037 | fullpath | |
|
5038 | Value = /home/sergey/projects/ImplabNet/Implab | |
|
5039 | outputfilename | |
|
5040 | Value = Implab.dll | |
|
5041 | rootnamespace | |
|
5042 | Value = Implab | |
|
5043 | ProjectCapability | |
|
5044 | AllTargetOutputGroups | |
|
5045 | AssemblyReferences | |
|
5046 | BuildWindowsDesktopTarget | |
|
5047 | COMReferences | |
|
5048 | CSharp | |
|
5049 | DeclaredSourceItems | |
|
5050 | FolderPublish | |
|
5051 | GenerateDocumentationFile | |
|
5052 | LanguageService | |
|
5053 | Managed | |
|
5054 | OutputGroups | |
|
5055 | Pack | |
|
5056 | ProjectReferences | |
|
5057 | ReferencesFolder | |
|
5058 | RelativePathDerivedDefaultNamespace | |
|
5059 | SharedProjectReferences | |
|
5060 | SingleFileGenerators | |
|
5061 | UserSourceItems | |
|
5062 | VisualStudioWellKnownOutputGroups | |
|
5063 | PropertyPageSchema | |
|
5064 | /usr/lib/mono/msbuild/15.0/bin/assemblyreference.xaml | |
|
5065 | Context = ;BrowseObject | |
|
5066 | /usr/lib/mono/msbuild/15.0/bin/COMReference.xaml | |
|
5067 | Context = ;BrowseObject | |
|
5068 | /usr/lib/mono/msbuild/15.0/bin/Content.xaml | |
|
5069 | Context = File;BrowseObject | |
|
5070 | /usr/lib/mono/msbuild/15.0/bin/CSharp.BrowseObject.xaml | |
|
5071 | Context = BrowseObject | |
|
5072 | /usr/lib/mono/msbuild/15.0/bin/CSharp.ProjectItemsSchema.xaml | |
|
5073 | /usr/lib/mono/msbuild/15.0/bin/CSharp.xaml | |
|
5074 | Context = File | |
|
5075 | /usr/lib/mono/msbuild/15.0/bin/Debugger_General.xaml | |
|
5076 | Context = Project | |
|
5077 | /usr/lib/mono/msbuild/15.0/bin/EmbeddedResource.xaml | |
|
5078 | Context = File;BrowseObject | |
|
5079 | /usr/lib/mono/msbuild/15.0/bin/Folder.xaml | |
|
5080 | Context = File;BrowseObject | |
|
5081 | /usr/lib/mono/msbuild/15.0/bin/General.BrowseObject.xaml | |
|
5082 | Context = BrowseObject | |
|
5083 | /usr/lib/mono/msbuild/15.0/bin/General.xaml | |
|
5084 | Context = Project | |
|
5085 | /usr/lib/mono/msbuild/15.0/bin/General_File.xaml | |
|
5086 | Context = File | |
|
5087 | /usr/lib/mono/msbuild/15.0/bin/None.xaml | |
|
5088 | Context = File;BrowseObject | |
|
5089 | /usr/lib/mono/msbuild/15.0/bin/ProjectItemsSchema.xaml | |
|
5090 | /usr/lib/mono/msbuild/15.0/bin/ProjectReference.xaml | |
|
5091 | Context = ;BrowseObject | |
|
5092 | /usr/lib/mono/msbuild/15.0/bin/ResolvedAssemblyReference.xaml | |
|
5093 | Context = ProjectSubscriptionService;BrowseObject | |
|
5094 | /usr/lib/mono/msbuild/15.0/bin/ResolvedCOMReference.xaml | |
|
5095 | Context = ProjectSubscriptionService;BrowseObject | |
|
5096 | /usr/lib/mono/msbuild/15.0/bin/ResolvedProjectReference.xaml | |
|
5097 | Context = ProjectSubscriptionService;BrowseObject | |
|
5098 | /usr/lib/mono/msbuild/15.0/bin/SCC.xaml | |
|
5099 | Context = Invisible | |
|
5100 | /usr/lib/mono/msbuild/15.0/bin/SpecialFolder.xaml | |
|
5101 | Context = File;ProjectSubscriptionService | |
|
5102 | SupportedTargetFramework | |
|
5103 | .NETCoreApp,Version=v1.0 | |
|
5104 | DisplayName = .NET Core 1.0 | |
|
5105 | .NETCoreApp,Version=v1.1 | |
|
5106 | DisplayName = .NET Core 1.1 | |
|
5107 | .NETCoreApp,Version=v2.0 | |
|
5108 | DisplayName = .NET Core 2.0 | |
|
5109 | .NETStandard,Version=v1.0 | |
|
5110 | DisplayName = .NET Standard 1.0 | |
|
5111 | .NETStandard,Version=v1.1 | |
|
5112 | DisplayName = .NET Standard 1.1 | |
|
5113 | .NETStandard,Version=v1.2 | |
|
5114 | DisplayName = .NET Standard 1.2 | |
|
5115 | .NETStandard,Version=v1.3 | |
|
5116 | DisplayName = .NET Standard 1.3 | |
|
5117 | .NETStandard,Version=v1.4 | |
|
5118 | DisplayName = .NET Standard 1.4 | |
|
5119 | .NETStandard,Version=v1.5 | |
|
5120 | DisplayName = .NET Standard 1.5 | |
|
5121 | .NETStandard,Version=v1.6 | |
|
5122 | DisplayName = .NET Standard 1.6 | |
|
5123 | .NETStandard,Version=v2.0 | |
|
5124 | DisplayName = .NET Standard 2.0 | |
|
5125 | ||
|
5126 | Building with tools version "15.0". | |
|
5127 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
5128 | Target "GetAllRuntimeIdentifiers: (TargetId:22)" in file "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
5129 | Done building target "GetAllRuntimeIdentifiers" in project "Implab.csproj".: (TargetId:22) | |
|
5130 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (GetAllRuntimeIdentifiers target(s)). | |
|
5131 | Done executing task "MSBuild". (TaskId:22) | |
|
5132 | Set Property: RuntimeIdentifiers= | |
|
5133 | Done building target "GetAllRuntimeIdentifiers" in project "Implab.csproj".: (TargetId:21) | |
|
5134 | Target "_GenerateRestoreProjectSpec: (TargetId:23)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateProjectRestoreGraph" depends on it): | |
|
5135 | Set Property: RestoreOutputPath=obj/ | |
|
5136 | Task "ConvertToAbsolutePath" (TaskId:23) | |
|
5137 | Task Parameter:Paths=obj/ (TaskId:23) | |
|
5138 | Output Property: RestoreOutputAbsolutePath=/home/sergey/projects/ImplabNet/Implab/obj/ (TaskId:23) | |
|
5139 | Done executing task "ConvertToAbsolutePath". (TaskId:23) | |
|
5140 | Set Property: _RestoreProjectName=Implab | |
|
5141 | Set Property: _RestoreProjectName=Implab | |
|
5142 | Set Property: _RestoreProjectName=Implab | |
|
5143 | Set Property: _RestoreProjectVersion=1.0.0 | |
|
5144 | Set Property: _RestoreProjectVersion=3.0.10 | |
|
5145 | Set Property: _RestoreProjectVersion=3.0.10 | |
|
5146 | Set Property: _RestoreCrossTargeting=true | |
|
5147 | Added Item(s): | |
|
5148 | _RestoreGraphEntry= | |
|
5149 | 2b4bd29e-c8dd-47b2-ae08-91ae55b83d3f | |
|
5150 | ConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config | |
|
5151 | CrossTargeting=true | |
|
5152 | FallbackFolders= | |
|
5153 | NoWarn=1701;1702;1705 | |
|
5154 | OutputPath=/home/sergey/projects/ImplabNet/Implab/obj/ | |
|
5155 | PackagesPath=/home/sergey/.nuget/packages/ | |
|
5156 | ProjectName=Implab | |
|
5157 | ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
5158 | ProjectStyle=PackageReference | |
|
5159 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
5160 | RestoreLegacyPackagesDirectory= | |
|
5161 | RuntimeIdentifiers=; | |
|
5162 | RuntimeSupports= | |
|
5163 | SkipContentFileWrite= | |
|
5164 | Sources=https://api.nuget.org/v3/index.json | |
|
5165 | TargetFrameworks=netstandard2.0 | |
|
5166 | TreatWarningsAsErrors=false | |
|
5167 | Type=ProjectSpec | |
|
5168 | ValidateRuntimeAssets=false | |
|
5169 | Version=3.0.10 | |
|
5170 | WarningsAsErrors=NU1605 | |
|
5171 | Done building target "_GenerateRestoreProjectSpec" in project "Implab.csproj".: (TargetId:23) | |
|
5172 | Target "_GetRestoreProjectStyle" skipped. Previously built successfully. | |
|
5173 | Target "_GetRestoreTargetFrameworksAsItems" skipped. Previously built successfully. | |
|
5174 | Target "_GenerateRestoreDependencies: (TargetId:24)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateProjectRestoreGraph" depends on it): | |
|
5175 | Task "MSBuild" (TaskId:24) | |
|
5176 | Task Parameter:Projects=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:24) | |
|
5177 | Task Parameter:Targets=_GenerateProjectRestoreGraphPerFramework (TaskId:24) | |
|
5178 | Task Parameter: | |
|
5179 | Properties= | |
|
5180 | TargetFramework=netstandard2.0 | |
|
5181 | RestoreUseCustomAfterTargets= | |
|
5182 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
5183 | BuildProjectReferences=false | |
|
5184 | ExcludeRestorePackageImports=true (TaskId:24) | |
|
5185 | Global Properties: (TaskId:24) | |
|
5186 | TargetFramework=netstandard2.0 (TaskId:24) | |
|
5187 | RestoreUseCustomAfterTargets= (TaskId:24) | |
|
5188 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets (TaskId:24) | |
|
5189 | BuildProjectReferences=false (TaskId:24) | |
|
5190 | ExcludeRestorePackageImports=true (TaskId:24) | |
|
5191 | Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:8) is building "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (1:10) on node 1 (_GenerateProjectRestoreGraphPerFramework target(s)). | |
|
5192 | Initial Properties: | |
|
5193 | _ = /usr/bin/msbuild | |
|
5194 | _ComputeExcludeFromPublishPackageReferences = true | |
|
5195 | _ConfigurationNameTmp = Debug | |
|
5196 | _DebugFileExt = .pdb | |
|
5197 | _DebugSymbolsProduced = true | |
|
5198 | _DefaultUserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
5199 | _DeploymentApplicationManifestIdentity = Native.Implab | |
|
5200 | _DeploymentBuiltUpdateInterval = 0 | |
|
5201 | _DeploymentBuiltUpdateIntervalUnits = Days | |
|
5202 | _DeploymentDeployManifestIdentity = Implab.application | |
|
5203 | _DeploymentFileMappingExtension = | |
|
5204 | _DeploymentTargetApplicationManifestFileName = Native.Implab.manifest | |
|
5205 | _DeploymentUrl = | |
|
5206 | _DirectoryBuildPropsBasePath = | |
|
5207 | _DirectoryBuildPropsFile = Directory.Build.props | |
|
5208 | _DirectoryBuildTargetsBasePath = | |
|
5209 | _DirectoryBuildTargetsFile = Directory.Build.targets | |
|
5210 | _DocumentationFileProduced = false | |
|
5211 | _DotNetAppHostExecutableName = apphost | |
|
5212 | _DotNetHostExecutableName = dotnet | |
|
5213 | _DotNetHostFxrLibraryName = libhostfxr.so | |
|
5214 | _DotNetHostPolicyLibraryName = libhostpolicy.so | |
|
5215 | _FrameworkIdentifierForImplicitDefine = NETSTANDARD | |
|
5216 | _FrameworkVersionForImplicitDefine = 2_0 | |
|
5217 | _GenerateBindingRedirectsIntermediateAppConfig = obj\Debug\netstandard2.0\Implab.dll.config | |
|
5218 | _GenerateRestoreGraphProjectEntryInputProperties = | |
|
5219 | RestoreUseCustomAfterTargets=; | |
|
5220 | NuGetRestoreTargets=/usr/lib/mono/msbuild/15.0/bin/NuGet.targets; | |
|
5221 | BuildProjectReferences=false; | |
|
5222 | ExcludeRestorePackageImports=true; | |
|
5223 | ||
|
5224 | _GetChildProjectCopyToOutputDirectoryItems = true | |
|
5225 | _GetChildProjectCopyToPublishDirectoryItems = true | |
|
5226 | _ImplicitPackageName = NETStandard.Library | |
|
5227 | _IsNETCoreOrNETStandard = true | |
|
5228 | _NativeLibraryExtension = .so | |
|
5229 | _NativeLibraryPrefix = lib | |
|
5230 | _NugetFallbackFolder = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../../NuGetFallbackFolder | |
|
5231 | _NugetTargetMonikerAndRID = .NETStandard,Version=v2.0 | |
|
5232 | _OriginalConfiguration = Debug | |
|
5233 | _OriginalPlatform = AnyCPU | |
|
5234 | _PlatformWithoutConfigurationInference = AnyCPU | |
|
5235 | _ProjectDefaultTargets = Build | |
|
5236 | _ResolveReferenceDependencies = false | |
|
5237 | _RestoreGraphAbsoluteProjectPaths = | |
|
5238 | _SGenDllCreated = false | |
|
5239 | _SGenDllName = Implab.XmlSerializers.dll | |
|
5240 | _SGenGenerateSerializationAssembliesConfig = Off | |
|
5241 | _ShortFrameworkIdentifier = netstandard | |
|
5242 | _ShortFrameworkVersion = 2.0 | |
|
5243 | _TargetFrameworkDirectories = | |
|
5244 | _TargetFrameworkVersionWithoutV = 2.0 | |
|
5245 | _UsingDefaultForHasRuntimeOutput = true | |
|
5246 | _UsingDefaultPlatformTarget = true | |
|
5247 | AddAdditionalExplicitAssemblyReferences = false | |
|
5248 | AllowedOutputExtensionsInPackageBuildOutputFolder = .dll; .exe; .winmd; .json; .pri; .xml; | |
|
5249 | AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder = .pdb; .mdb; .dll; .exe; .winmd; .json; .pri; .xml; ; | |
|
5250 | AllowedReferenceAssemblyFileExtensions = | |
|
5251 | .winmd; | |
|
5252 | .dll; | |
|
5253 | .exe | |
|
5254 | ||
|
5255 | AllowedReferenceRelatedDebugFileExtensions = | |
|
5256 | .pdb; | |
|
5257 | .dll.mdb; | |
|
5258 | .exe.mdb | |
|
5259 | ||
|
5260 | AllowedReferenceRelatedFileExtensions = | |
|
5261 | ||
|
5262 | .pdb; | |
|
5263 | .dll.mdb; | |
|
5264 | .exe.mdb | |
|
5265 | ; | |
|
5266 | .xml; | |
|
5267 | .pri; | |
|
5268 | .dll.config; | |
|
5269 | .exe.config | |
|
5270 | ||
|
5271 | AllowUnsafeBlocks = false | |
|
5272 | ALSA_CONFIG_PATH = /etc/alsa-pulse.conf | |
|
5273 | AlwaysUseNumericalSuffixInItemNames = true | |
|
5274 | AppDesignerFolder = Properties | |
|
5275 | AppendRuntimeIdentifierToOutputPath = true | |
|
5276 | AppendTargetFrameworkToOutputPath = true | |
|
5277 | AssemblyFoldersConfigFile = /usr/lib/mono/msbuild/15.0/bin/AssemblyFolders.config | |
|
5278 | AssemblyFoldersSuffix = AssemblyFoldersEx | |
|
5279 | AssemblyName = Implab | |
|
5280 | AssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
5281 | AssemblyTitle = Implab | |
|
5282 | AssetTargetFallback = ;net461 | |
|
5283 | AssignTargetPathsDependsOn = | |
|
5284 | AUDIODRIVER = pulseaudio | |
|
5285 | Authors = Sergey Smirnov | |
|
5286 | AutoUnifyAssemblyReferences = true | |
|
5287 | AvailablePlatforms = Any CPU,x86,x64 | |
|
5288 | BaseIntermediateOutputPath = obj\ | |
|
5289 | BaseOutputPath = bin\ | |
|
5290 | BuildCompileAction = Build | |
|
5291 | BuildDependsOn = | |
|
5292 | BeforeBuild; | |
|
5293 | CoreBuild; | |
|
5294 | AfterBuild | |
|
5295 | ||
|
5296 | BuildGenerateSourcesAction = Build | |
|
5297 | BuildingProject = false | |
|
5298 | BuildInParallel = true | |
|
5299 | BuildLinkAction = Build | |
|
5300 | BuildOutputTargetFolder = lib | |
|
5301 | BuildProjectReferences = false | |
|
5302 | BuiltProjectOutputGroupDependsOn = PrepareForBuild | |
|
5303 | CheckForOverflowUnderflow = false | |
|
5304 | CHROME_DESKTOP = Code.desktop | |
|
5305 | CleanDependsOn = | |
|
5306 | BeforeClean; | |
|
5307 | UnmanagedUnregistration; | |
|
5308 | CoreClean; | |
|
5309 | CleanReferencedProjects; | |
|
5310 | CleanPublishFolder; | |
|
5311 | AfterClean | |
|
5312 | ||
|
5313 | CleanFile = Implab.csproj.FileListAbsolute.txt | |
|
5314 | CodeAnalysisTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/CodeAnalysis/Microsoft.CodeAnalysis.targets | |
|
5315 | COLORTERM = 1 | |
|
5316 | CommonMonoTargetsPath = Microsoft.Common.Mono.targets | |
|
5317 | CommonTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets | |
|
5318 | CommonXamlResourcesDirectory = /usr/lib/mono/msbuild/15.0/bin/ | |
|
5319 | Company = Sergey Smirnov | |
|
5320 | CompileDependsOn = | |
|
5321 | ResolveReferences; | |
|
5322 | ResolveKeySource; | |
|
5323 | SetWin32ManifestProperties; | |
|
5324 | FindReferenceAssembliesForReferences; | |
|
5325 | _GenerateCompileInputs; | |
|
5326 | BeforeCompile; | |
|
5327 | _TimeStampBeforeCompile; | |
|
5328 | _GenerateCompileDependencyCache; | |
|
5329 | CoreCompile; | |
|
5330 | _TimeStampAfterCompile; | |
|
5331 | AfterCompile; | |
|
5332 | ||
|
5333 | CompileLicxFilesDependsOn = | |
|
5334 | ComputeIntermediateSatelliteAssembliesDependsOn = | |
|
5335 | CreateManifestResourceNames | |
|
5336 | ||
|
5337 | ComReferenceExecuteAsTool = false | |
|
5338 | ComReferenceNoClassMembers = false | |
|
5339 | Configuration = Debug | |
|
5340 | ConfigurationName = Debug | |
|
5341 | Configurations = Debug;Release | |
|
5342 | ConsiderPlatformAsProcessorArchitecture = true | |
|
5343 | ContentFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
5344 | ContentPreprocessorOutputDirectory = obj\Debug\netstandard2.0\NuGet\ | |
|
5345 | ContentTargetFolders = content;contentFiles | |
|
5346 | ContinueOnError = false | |
|
5347 | CopyLocalLockFileAssemblies = false | |
|
5348 | Copyright = 2012-2018 Sergey Smirnov | |
|
5349 | CoreBuildDependsOn = | |
|
5350 | ||
|
5351 | BuildOnlySettings; | |
|
5352 | PrepareForBuild; | |
|
5353 | PreBuildEvent; | |
|
5354 | ResolveReferences; | |
|
5355 | PrepareResources; | |
|
5356 | ResolveKeySource; | |
|
5357 | Compile; | |
|
5358 | ExportWindowsMDFile; | |
|
5359 | UnmanagedUnregistration; | |
|
5360 | GenerateSerializationAssemblies; | |
|
5361 | CreateSatelliteAssemblies; | |
|
5362 | GenerateManifests; | |
|
5363 | GetTargetPath; | |
|
5364 | PrepareForRun; | |
|
5365 | UnmanagedRegistration; | |
|
5366 | IncrementalClean; | |
|
5367 | PostBuildEvent | |
|
5368 | ; | |
|
5369 | GenerateBuildDependencyFile; | |
|
5370 | GenerateBuildRuntimeConfigurationFiles | |
|
5371 | ||
|
5372 | CoreCleanDependsOn = | |
|
5373 | CoreCompileDependsOn = _ComputeNonExistentFileProperty;ResolveCodeAnalysisRuleSet | |
|
5374 | CoreResGenDependsOn = FindReferenceAssembliesForReferences | |
|
5375 | CPU = x86_64 | |
|
5376 | CreateCustomManifestResourceNamesDependsOn = | |
|
5377 | CreateHardLinksForCopyAdditionalFilesIfPossible = false | |
|
5378 | CreateManifestResourceNamesDependsOn = | |
|
5379 | CreateSatelliteAssembliesDependsOn = | |
|
5380 | ||
|
5381 | _GenerateSatelliteAssemblyInputs; | |
|
5382 | ComputeIntermediateSatelliteAssemblies; | |
|
5383 | GenerateSatelliteAssemblies | |
|
5384 | ; | |
|
5385 | CoreGenerateSatelliteAssemblies | |
|
5386 | ||
|
5387 | CreateSymbolicLinksForCopyAdditionalFilesIfPossible = false | |
|
5388 | CscToolPath = /usr/lib/mono/4.5/ | |
|
5389 | CSharpCoreTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets | |
|
5390 | CSharpDesignTimeTargetsPath = /usr/lib/mono/xbuild/Microsoft/VisualStudio/Managed/Microsoft.CSharp.DesignTime.targets | |
|
5391 | CSharpMonoTargetsPath = Microsoft.CSharp.Mono.targets | |
|
5392 | CSharpTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets | |
|
5393 | CSHEDIT = emacs | |
|
5394 | CustomAfterMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.props | |
|
5395 | CustomAfterMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.Common.targets | |
|
5396 | CustomAfterMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.After.Microsoft.CSharp.targets | |
|
5397 | CustomBeforeMicrosoftCommonProps = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.props | |
|
5398 | CustomBeforeMicrosoftCommonTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.Common.targets | |
|
5399 | CustomBeforeMicrosoftCSharpTargets = /usr/lib/mono/xbuild/v15.0/Custom.Before.Microsoft.CSharp.targets | |
|
5400 | DBUS_SESSION_BUS_ADDRESS = unix:path=/run/user/1000/bus | |
|
5401 | DebugSymbols = true | |
|
5402 | DebugSymbolsProjectOutputGroupDependsOn = | |
|
5403 | DebugType = portable | |
|
5404 | DefaultCopyToPublishDirectoryMetadata = true | |
|
5405 | DefaultExcludesInProjectFolder = ;**/.*/** | |
|
5406 | DefaultImplicitPackages = Microsoft.NETCore.App;NETStandard.Library | |
|
5407 | DefaultItemExcludes = ;bin\Debug\/**;obj\Debug\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;packages/** | |
|
5408 | DefaultLanguageSourceExtension = .cs | |
|
5409 | DefaultProjectTypeGuid = {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
|
5410 | DefineCommonCapabilities = true | |
|
5411 | DefineCommonItemSchemas = true | |
|
5412 | DefineCommonReferenceSchemas = true | |
|
5413 | DefineConstants = TRACE;DEBUG;NETSTANDARD2_0 | |
|
5414 | DelaySign = | |
|
5415 | Description = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
5416 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
5417 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
5418 | ||
|
5419 | DesignTimeAssemblySearchPaths = {CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName} | |
|
5420 | DesignTimeAutoUnify = true | |
|
5421 | DesignTimeResolveAssemblyReferencesDependsOn = | |
|
5422 | GetFrameworkPaths; | |
|
5423 | GetReferenceAssemblyPaths; | |
|
5424 | ResolveReferences | |
|
5425 | ||
|
5426 | DESKTOP_SESSION = gnome | |
|
5427 | DESKTOP_STARTUP_ID = gnome-shell-2581-chamber-/usr/share/code/code-3_TIME13006554 | |
|
5428 | Deterministic = true | |
|
5429 | DevEnvDir = *Undefined* | |
|
5430 | DisableHandlePackageFileConflicts = true | |
|
5431 | DisableStandardFrameworkResolution = true | |
|
5432 | DISPLAY = :0 | |
|
5433 | DocumentationFile = | |
|
5434 | DocumentationProjectOutputGroupDependsOn = | |
|
5435 | EmbeddedWin32Manifest = | |
|
5436 | EmitAssetsLogMessages = true | |
|
5437 | EmitsDependencyDiagnosticMessages = | |
|
5438 | ReportAssetsLogMessages; | |
|
5439 | ||
|
5440 | RunResolvePackageDependencies; | |
|
5441 | ||
|
5442 | ||
|
5443 | ||
|
5444 | EnableDefaultCompileItems = true | |
|
5445 | EnableDefaultEmbeddedResourceItems = true | |
|
5446 | EnableDefaultItems = true | |
|
5447 | EnableDefaultNoneItems = true | |
|
5448 | EnableFrameworkPathOverride = false | |
|
5449 | ErrorReport = prompt | |
|
5450 | ExcludeRestorePackageImports = true | |
|
5451 | ExecuteAsTool = false | |
|
5452 | ExpandSDKAllowedReferenceExtensions = | |
|
5453 | .winmd; | |
|
5454 | .dll | |
|
5455 | ||
|
5456 | ExpandSDKReferencesDependsOn = | |
|
5457 | ResolveSDKReferences | |
|
5458 | ||
|
5459 | FileAlignment = 512 | |
|
5460 | FilterDeniedAssemblies = false | |
|
5461 | FindInvalidProjectReferencesDependsOn = | |
|
5462 | GetReferenceTargetPlatformMonikers | |
|
5463 | ||
|
5464 | Framework20Dir = @(_TargetFramework20DirectoryItem) | |
|
5465 | Framework30Dir = @(_TargetFramework30DirectoryItem) | |
|
5466 | Framework35Dir = @(_TargetFramework35DirectoryItem) | |
|
5467 | Framework40Dir = @(_TargetFramework40DirectoryItem) | |
|
5468 | FrameworkDir = @(_TargetFramework20DirectoryItem) | |
|
5469 | FrameworkPathOverride = | |
|
5470 | FrameworkRegistryBase = Software\Microsoft\.NETStandard | |
|
5471 | FrameworkSDKDir = @(_TargetFrameworkSDKDirectoryItem) | |
|
5472 | FrameworkSDKRoot = /usr/lib/mono/msbuild/ | |
|
5473 | FROM_HEADER = | |
|
5474 | FullReferenceAssemblyNames = Full | |
|
5475 | G_BROKEN_FILENAMES = 1 | |
|
5476 | G_FILENAME_ENCODING = @locale,UTF-8,KOI8-R,CP1251 | |
|
5477 | GDMSESSION = gnome | |
|
5478 | GenerateAssemblyCompanyAttribute = true | |
|
5479 | GenerateAssemblyConfigurationAttribute = true | |
|
5480 | GenerateAssemblyCopyrightAttribute = true | |
|
5481 | GenerateAssemblyDescriptionAttribute = true | |
|
5482 | GenerateAssemblyFileVersionAttribute = true | |
|
5483 | GenerateAssemblyInfo = true | |
|
5484 | GenerateAssemblyInformationalVersionAttribute = true | |
|
5485 | GenerateAssemblyProductAttribute = true | |
|
5486 | GenerateAssemblyTitleAttribute = true | |
|
5487 | GenerateAssemblyVersionAttribute = true | |
|
5488 | GeneratedAssemblyInfoFile = obj\Debug\netstandard2.0\Implab.AssemblyInfo.cs | |
|
5489 | GenerateDependencyFile = true | |
|
5490 | GenerateDocumentationFile = false | |
|
5491 | GenerateManifestsDependsOn = | |
|
5492 | GenerateNeutralResourcesLanguageAttribute = true | |
|
5493 | GenerateNuspecDependsOn = Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; | |
|
5494 | GeneratePackageOnBuild = false | |
|
5495 | GenerateResourceMSBuildArchitecture = CurrentArchitecture | |
|
5496 | GenerateResourceMSBuildRuntime = CurrentRuntime | |
|
5497 | GenerateSerializationAssemblies = Off | |
|
5498 | GenerateTargetFrameworkAttribute = true | |
|
5499 | GetCopyToOutputDirectoryItemsDependsOn = | |
|
5500 | AssignTargetPaths; | |
|
5501 | _SplitProjectReferencesByFileExistence; | |
|
5502 | _GetProjectReferenceTargetFrameworkProperties | |
|
5503 | ||
|
5504 | GetFrameworkPathsDependsOn = | |
|
5505 | GetTargetPathDependsOn = | |
|
5506 | GetTargetPathWithTargetPlatformMonikerDependsOn = | |
|
5507 | GIO_LAUNCHED_DESKTOP_FILE = /usr/share/applications/code.desktop | |
|
5508 | GIO_LAUNCHED_DESKTOP_FILE_PID = 32392 | |
|
5509 | GJS_DEBUG_OUTPUT = stderr | |
|
5510 | GJS_DEBUG_TOPICS = JS ERROR;JS LOG | |
|
5511 | GNOME_DESKTOP_SESSION_ID = this-is-deprecated | |
|
5512 | GPG_TTY = /dev/pts/1 | |
|
5513 | HasRuntimeOutput = | |
|
5514 | HideWarningsAndErrors = false | |
|
5515 | HISTSIZE = 1000 | |
|
5516 | HOME = /home/sergey | |
|
5517 | HOST = chamber | |
|
5518 | HOSTNAME = chamber | |
|
5519 | HOSTTYPE = x86_64 | |
|
5520 | ImplicitConfigurationDefine = DEBUG | |
|
5521 | ImplicitFrameworkDefine = NETSTANDARD2_0 | |
|
5522 | ImportByWildcardAfterMicrosoftCommonProps = true | |
|
5523 | ImportByWildcardAfterMicrosoftCommonTargets = true | |
|
5524 | ImportByWildcardAfterMicrosoftCSharpTargets = true | |
|
5525 | ImportByWildcardBeforeMicrosoftCommonProps = true | |
|
5526 | ImportByWildcardBeforeMicrosoftCommonTargets = true | |
|
5527 | ImportByWildcardBeforeMicrosoftCSharpTargets = true | |
|
5528 | ImportDirectoryBuildProps = true | |
|
5529 | ImportDirectoryBuildTargets = true | |
|
5530 | ImportNuGetBuildTasksPackTargetsFromSdk = true | |
|
5531 | ImportProjectExtensionProps = true | |
|
5532 | ImportProjectExtensionTargets = true | |
|
5533 | ImportUserLocationsByWildcardAfterMicrosoftCommonProps = true | |
|
5534 | ImportUserLocationsByWildcardAfterMicrosoftCommonTargets = true | |
|
5535 | ImportUserLocationsByWildcardAfterMicrosoftCSharpTargets = true | |
|
5536 | ImportUserLocationsByWildcardBeforeMicrosoftCommonProps = true | |
|
5537 | ImportUserLocationsByWildcardBeforeMicrosoftCommonTargets = true | |
|
5538 | ImportUserLocationsByWildcardBeforeMicrosoftCSharpTargets = true | |
|
5539 | IncludeBuildOutput = true | |
|
5540 | IncludeContentInPack = true | |
|
5541 | IncludeMainProjectInDepsFile = true | |
|
5542 | IntermediateOutputPath = obj\Debug\netstandard2.0\ | |
|
5543 | IsInnerBuild = true | |
|
5544 | IsPackable = true | |
|
5545 | IsPublishable = true | |
|
5546 | IsRestoreTargetsFileLoaded = true | |
|
5547 | JAVA_BINDIR = /usr/lib64/jvm/java/bin | |
|
5548 | JAVA_HOME = /usr/lib64/jvm/java | |
|
5549 | JAVA_ROOT = /usr/lib64/jvm/java | |
|
5550 | JDK_HOME = /usr/lib64/jvm/java | |
|
5551 | JRE_HOME = /usr/lib64/jvm/java/jre | |
|
5552 | LANG = en_US.UTF-8 | |
|
5553 | Language = C# | |
|
5554 | LanguageTargets = /usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.targets | |
|
5555 | LC_CTYPE = ru_RU.UTF-8 | |
|
5556 | LESS = -M -I -R | |
|
5557 | LESS_ADVANCED_PREPROCESSOR = no | |
|
5558 | LESSCLOSE = lessclose.sh %s %s | |
|
5559 | LESSKEY = /etc/lesskey.bin | |
|
5560 | LESSOPEN = lessopen.sh %s | |
|
5561 | LocalAppData = /home/sergey/.local/share | |
|
5562 | LOGNAME = sergey | |
|
5563 | LS_COLORS = no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.xz=00;31:*.avi=01;35:*.bmp=01;35:*.dl=01;35:*.fli=01;35:*.gif=01;35:*.gl=01;35:*.jpg=01;35:*.jpeg=01;35:*.mkv=01;35:*.mng=01;35:*.mov=01;35:*.mp4=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.svg=01;35:*.tga=01;35:*.tif=01;35:*.webm=01;35:*.webp=01;35:*.wmv=01;35:*.xbm=01;35:*.xcf=01;35:*.xpm=01;35:*.aiff=00;32:*.ape=00;32:*.au=00;32:*.flac=00;32:*.m4a=00;32:*.mid=00;32:*.mp3=00;32:*.mpc=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.wma=00;32:*.wv=00;32: | |
|
5564 | LS_OPTIONS = -N --color=tty -T 0 | |
|
5565 | MACHTYPE = x86_64-suse-linux | |
|
5566 | MAIL = /var/spool/mail/sergey | |
|
5567 | MANPATH = /usr/local/man:/usr/share/man | |
|
5568 | MaxTargetPath = 100 | |
|
5569 | MicrosoftCommonPropsHasBeenImported = true | |
|
5570 | MicrosoftNETBuildExtensionsTargets = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets | |
|
5571 | MicrosoftNETBuildExtensionsTasksAssembly = /usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/tools/net46/Microsoft.NET.Build.Extensions.Tasks.dll | |
|
5572 | MicrosoftNETBuildTasksAssembly = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll | |
|
5573 | MicrosoftNETBuildTasksDirectory = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/ | |
|
5574 | MicrosoftNETBuildTasksDirectoryRoot = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/ | |
|
5575 | MicrosoftNETBuildTasksTFM = net46 | |
|
5576 | MINICOM = -c on | |
|
5577 | MONO_GC_PARAMS = nursery-size=64m, | |
|
5578 | MORE = -sl | |
|
5579 | MsAppxPackageTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/AppxPackage/Microsoft.AppXPackage.Targets | |
|
5580 | MSBuildAllProjects = ;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.SupportedTargetFrameworks.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.props;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.BeforeCommon.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DefaultOutputPaths.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.TargetFrameworkInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.RuntimeIdentifierInference.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.NuGetOfflineCache.targets;/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets;/home/sergey/projects/ImplabNet/Implab/Implab.csproj;/usr/lib/mono/msbuild/15.0/bin/Microsoft.Common.CurrentVersion.targets;/usr/lib/mono/msbuild/15.0/bin/NuGet.targets;/usr/lib/mono/xbuild/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets;/usr/lib/mono/xbuild/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets;/home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.g.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.Common.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.DisableStandardFrameworkResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.GenerateAssemblyInfo.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ComposeStore.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.CrossGen.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Publish.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.PreserveCompilationContext.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.ConflictResolution.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.CSharp.targets;/usr/lib/mono/msbuild/15.0/bin/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
5581 | MSBuildAssemblyVersion = 15.0 | |
|
5582 | MSBuildBinPath = /usr/lib/mono/msbuild/15.0/bin | |
|
5583 | MSBuildExtensionsPath = /usr/lib/mono/xbuild | |
|
5584 | MSBuildExtensionsPath32 = /usr/lib/mono/xbuild | |
|
5585 | MSBuildExtensionsPath64 = /usr/lib/mono/xbuild | |
|
5586 | MSBuildFrameworkToolsPath = /usr/lib/mono/4.5/ | |
|
5587 | MSBuildFrameworkToolsPath32 = /usr/lib/mono/4.5/ | |
|
5588 | MSBuildFrameworkToolsRoot = /usr/lib/mono | |
|
5589 | MSBuildLastTaskResult = true | |
|
5590 | MSBuildLoadMicrosoftTargetsReadOnly = true | |
|
5591 | MSBuildNodeCount = 1 | |
|
5592 | MSBuildProgramFiles32 = /usr/lib/mono/xbuild | |
|
5593 | MSBuildProjectDefaultTargets = Build | |
|
5594 | MSBuildProjectDirectory = /home/sergey/projects/ImplabNet/Implab | |
|
5595 | MSBuildProjectDirectoryNoRoot = home/sergey/projects/ImplabNet/Implab | |
|
5596 | MSBuildProjectExtension = .csproj | |
|
5597 | MSBuildProjectExtensionsPath = /home/sergey/projects/ImplabNet/Implab/obj/ | |
|
5598 | MSBuildProjectFile = Implab.csproj | |
|
5599 | MSBuildProjectFullPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
5600 | MSBuildProjectName = Implab | |
|
5601 | MSBuildRuntimeType = Mono | |
|
5602 | MSBuildRuntimeVersion = 4.0.30319 | |
|
5603 | MSBuildSdksPath = /usr/lib/mono/msbuild/15.0/bin/Sdks | |
|
5604 | MSBuildStartupDirectory = /home/sergey/projects/ImplabNet | |
|
5605 | MSBuildToolsPath = /usr/lib/mono/msbuild/15.0/bin | |
|
5606 | MSBuildToolsPath32 = /usr/lib/mono/msbuild/15.0/bin | |
|
5607 | MSBuildToolsPath64 = /usr/lib/mono/msbuild/15.0/bin | |
|
5608 | MSBuildToolsRoot = /usr/lib/mono/msbuild/ | |
|
5609 | MSBuildToolsVersion = 15.0 | |
|
5610 | MSBuildUserExtensionsPath = /home/sergey/.local/share/Microsoft\MSBuild | |
|
5611 | MsTestToolsTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/TeamTest/Microsoft.TeamTest.targets | |
|
5612 | NETCoreSdkBundledVersionsProps = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../../../Microsoft.NETCoreSdk.BundledVersions.props | |
|
5613 | NETStandardImplicitPackageVersion = 1.6.1 | |
|
5614 | NETStandardMaximumVersion = | |
|
5615 | NNTPSERVER = news | |
|
5616 | NoCompilerStandardLib = true | |
|
5617 | NoLogo = true | |
|
5618 | NoStdLib = true | |
|
5619 | NoWarn = 1701;1702;1705 | |
|
5620 | NuGetBuildTasksPackTargets = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/Sdk/../../NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets | |
|
5621 | NuGetPackTaskAssemblyFile = ../Desktop/NuGet.Build.Tasks.Pack.dll | |
|
5622 | NuGetProps = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.props | |
|
5623 | NuGetRestoreTargets = /usr/lib/mono/msbuild/15.0/bin/NuGet.targets | |
|
5624 | NuGetTargetMoniker = .NETStandard,Version=v2.0 | |
|
5625 | NuGetTargets = /usr/lib/mono/xbuild/Microsoft/NuGet/Microsoft.NuGet.targets | |
|
5626 | NuspecOutputPath = obj\Debug\ | |
|
5627 | Optimize = false | |
|
5628 | OS = Unix | |
|
5629 | OSTYPE = linux | |
|
5630 | OutDir = bin\Debug\netstandard2.0\ | |
|
5631 | OutputPath = bin\Debug\netstandard2.0\ | |
|
5632 | OutputType = Library | |
|
5633 | OverwriteReadOnlyFiles = false | |
|
5634 | PackageDescription = Provides some helper clesses like XML serialization helpers, JSON XML reader, | |
|
5635 | JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal | |
|
5636 | and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc. | |
|
5637 | ||
|
5638 | PackageId = Implab | |
|
5639 | PackageLicenseUrl = https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt | |
|
5640 | PackageOutputPath = bin\Debug\ | |
|
5641 | PackageProjectUrl = https://implab.org | |
|
5642 | PackageRequireLicenseAcceptance = false | |
|
5643 | PackageTags = IMPLAB;Json pull-parser;Json Xml;async;diagnostics;serialization; | |
|
5644 | PackageVersion = 3.0.10 | |
|
5645 | PackDependsOn = ; _IntermediatePack; GenerateNuspec; | |
|
5646 | PAGER = less | |
|
5647 | PATH = /home/sergey/bin:/usr/local/bin:/usr/bin:/bin:/home/sergey/.dotnet/tools:/usr/lib/mit/sbin | |
|
5648 | Platform = AnyCPU | |
|
5649 | PlatformName = AnyCPU | |
|
5650 | Platforms = AnyCPU | |
|
5651 | PlatformTargetAsMSBuildArchitecture = CurrentArchitecture | |
|
5652 | PlatformTargetAsMSBuildArchitectureExplicitlySet = false | |
|
5653 | PostBuildEventDependsOn = | |
|
5654 | PreBuildEventDependsOn = | |
|
5655 | Prefer32Bit = false | |
|
5656 | PrepareForBuildDependsOn = GetFrameworkPaths;GetReferenceAssemblyPaths;AssignLinkMetadata | |
|
5657 | PrepareForRunDependsOn = | |
|
5658 | CopyFilesToOutputDirectory | |
|
5659 | ||
|
5660 | PrepareProjectReferencesDependsOn = | |
|
5661 | AssignProjectConfiguration; | |
|
5662 | _SplitProjectReferencesByFileExistence; | |
|
5663 | _GetProjectReferenceTargetFrameworkProperties | |
|
5664 | ||
|
5665 | PrepareResourceNamesDependsOn = | |
|
5666 | AssignTargetPaths; | |
|
5667 | SplitResourcesByCulture; | |
|
5668 | CreateManifestResourceNames; | |
|
5669 | CreateCustomManifestResourceNames | |
|
5670 | ||
|
5671 | PrepareResourcesDependsOn = | |
|
5672 | ResolvePackageDependenciesForBuild; | |
|
5673 | _HandlePackageFileConflicts; | |
|
5674 | ||
|
5675 | PrepareResourceNames; | |
|
5676 | ResGen; | |
|
5677 | CompileLicxFiles | |
|
5678 | ||
|
5679 | ||
|
5680 | ProcessorArchitecture = msil | |
|
5681 | ProcessorArchitectureAsPlatform = AnyCPU | |
|
5682 | ProduceOnlyPreprocessorFilesInBuildTask = true | |
|
5683 | ProduceReferenceAssembly = false | |
|
5684 | Product = Implab | |
|
5685 | PROFILEREAD = true | |
|
5686 | ProjectAssetsFile = /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
5687 | ProjectDepsFileName = Implab.deps.json | |
|
5688 | ProjectDepsFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.deps.json | |
|
5689 | ProjectDesignTimeAssemblyResolutionSearchPaths = | |
|
5690 | {CandidateAssemblyFiles}; | |
|
5691 | ; | |
|
5692 | {HintPathFromItem}; | |
|
5693 | {TargetFrameworkDirectory}; | |
|
5694 | {Registry:Software\Microsoft\.NETStandard,v2.0,AssemblyFoldersEx}; | |
|
5695 | {RawFileName}; | |
|
5696 | /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
5697 | ||
|
5698 | ProjectDir = /home/sergey/projects/ImplabNet/Implab/ | |
|
5699 | ProjectExt = .csproj | |
|
5700 | ProjectFileName = Implab.csproj | |
|
5701 | ProjectFlavor = Client | |
|
5702 | ProjectName = Implab | |
|
5703 | ProjectPath = /home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
5704 | ProjectRuntimeConfigDevFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.dev.json | |
|
5705 | ProjectRuntimeConfigFileName = Implab.runtimeconfig.json | |
|
5706 | ProjectRuntimeConfigFilePath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.runtimeconfig.json | |
|
5707 | PublishableProject = | |
|
5708 | PublishBuildDependsOn = | |
|
5709 | BuildOnlySettings; | |
|
5710 | PrepareForBuild; | |
|
5711 | ResolveReferences; | |
|
5712 | PrepareResources; | |
|
5713 | ResolveKeySource; | |
|
5714 | GenerateSerializationAssemblies; | |
|
5715 | CreateSatelliteAssemblies; | |
|
5716 | ||
|
5717 | PublishDependsOn = | |
|
5718 | _DeploymentUnpublishable | |
|
5719 | ||
|
5720 | PublishDir = bin\Debug\netstandard2.0\publish\ | |
|
5721 | PublishDirName = publish | |
|
5722 | PublishDocumentationFile = true | |
|
5723 | PublishDocumentationFiles = true | |
|
5724 | PublishOnlyDependsOn = | |
|
5725 | SetGenerateManifests; | |
|
5726 | PublishBuild; | |
|
5727 | BeforePublish; | |
|
5728 | GenerateManifests; | |
|
5729 | CopyFilesToOutputDirectory; | |
|
5730 | _CopyFilesToPublishFolder; | |
|
5731 | _DeploymentGenerateBootstrapper; | |
|
5732 | ResolveKeySource; | |
|
5733 | _DeploymentSignClickOnceDeployment; | |
|
5734 | AfterPublish | |
|
5735 | ||
|
5736 | PublishReferencesDocumentationFiles = true | |
|
5737 | PWD = /home/sergey/projects/ImplabNet | |
|
5738 | PYTHONSTARTUP = /etc/pythonstart | |
|
5739 | QEMU_AUDIO_DRV = pa | |
|
5740 | QT_IM_MODULE = ibus | |
|
5741 | QT_SYSTEM_DIR = /usr/share/desktop-data | |
|
5742 | RebuildDependsOn = | |
|
5743 | BeforeRebuild; | |
|
5744 | Clean; | |
|
5745 | Build; | |
|
5746 | AfterRebuild; | |
|
5747 | ||
|
5748 | RefAssembliesFolderName = refs | |
|
5749 | ReportingServicesTargets = /usr/lib/mono/xbuild/Microsoft/VisualStudio/v15.0/ReportingServices/Microsoft.ReportingServices.targets | |
|
5750 | RepositoryType = mercurial | |
|
5751 | RepositoryUrl = https://hg.implab.org/pub/ImplabNet/ | |
|
5752 | ResGenDependsOn = ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen | |
|
5753 | ResGenExecuteAsTool = false | |
|
5754 | ResolveAssemblyReferencesDependsOn = | |
|
5755 | ||
|
5756 | GetFrameworkPaths; | |
|
5757 | GetReferenceAssemblyPaths; | |
|
5758 | PrepareForBuild; | |
|
5759 | ResolveSDKReferences; | |
|
5760 | ExpandSDKReferences; | |
|
5761 | ; | |
|
5762 | ResolvePackageDependenciesForBuild; | |
|
5763 | _HandlePackageFileConflicts; | |
|
5764 | ||
|
5765 | ResolveNuGetPackages = false | |
|
5766 | ResolvePackageDependenciesForBuild = true | |
|
5767 | ResolvePackageDependenciesForBuildDependsOn = | |
|
5768 | ResolveLockFileReferences; | |
|
5769 | ResolveLockFileAnalyzers; | |
|
5770 | ResolveLockFileCopyLocalProjectDeps; | |
|
5771 | IncludeTransitiveProjectReferences | |
|
5772 | ||
|
5773 | ResolveReferencesDependsOn = | |
|
5774 | BeforeResolveReferences; | |
|
5775 | AssignProjectConfiguration; | |
|
5776 | ResolveProjectReferences; | |
|
5777 | FindInvalidProjectReferences; | |
|
5778 | ResolveNativeReferences; | |
|
5779 | ResolveAssemblyReferences; | |
|
5780 | GenerateBindingRedirects; | |
|
5781 | ResolveComReferences; | |
|
5782 | AfterResolveReferences | |
|
5783 | ||
|
5784 | ResolveSDKReferencesDependsOn = | |
|
5785 | GetInstalledSDKLocations | |
|
5786 | ||
|
5787 | RestoreContinueOnError = WarnAndContinue | |
|
5788 | RestoreProjectStyle = PackageReference | |
|
5789 | RestoreRecursive = true | |
|
5790 | RestoreTaskAssemblyFile = NuGet.Build.Tasks.dll | |
|
5791 | RestoreUseCustomAfterTargets = | |
|
5792 | RootNamespace = Implab | |
|
5793 | RoslynTargetsPath = /usr/lib/mono/msbuild/15.0/bin/Roslyn | |
|
5794 | RunDependsOn = | |
|
5795 | RunWorkingDirectory = | |
|
5796 | SatelliteDllsProjectOutputGroupDependsOn = PrepareForBuild;PrepareResourceNames | |
|
5797 | SDK_HOME = /usr/lib64/jvm/java | |
|
5798 | SDK35ToolsPath = / | |
|
5799 | SDK40ToolsPath = /usr/lib/mono/4.5/ | |
|
5800 | SDKRedistOutputGroupDependsOn = ResolveSDKReferences;ExpandSDKReferences | |
|
5801 | SDKReferenceDirectoryRoot = /home/sergey/.local/share/Microsoft SDKs;/usr/lib/mono/xbuild/Microsoft SDKs | |
|
5802 | SDKReferenceRegistryRoot = Software\Microsoft\Microsoft SDKs | |
|
5803 | SDL_AUDIODRIVER = pulse | |
|
5804 | SESSION_MANAGER = local/chamber:@/tmp/.ICE-unix/2522,unix/chamber:/tmp/.ICE-unix/2522 | |
|
5805 | SGenFilesOutputGroupDependsOn = | |
|
5806 | SGenShouldGenerateSerializer = true | |
|
5807 | SGenUseKeep = false | |
|
5808 | SGenUseProxyTypes = true | |
|
5809 | SHELL = /bin/bash | |
|
5810 | SHLVL = 3 | |
|
5811 | ShouldMarkCertainSDKReferencesAsRuntimeOnly = true | |
|
5812 | SignAssembly = false | |
|
5813 | SkipCopyUnchangedFiles = true | |
|
5814 | SkipImportNuGetBuildTargets = true | |
|
5815 | SkipImportNuGetProps = true | |
|
5816 | SolutionDir = *Undefined* | |
|
5817 | SolutionExt = *Undefined* | |
|
5818 | SolutionFileName = *Undefined* | |
|
5819 | SolutionName = *Undefined* | |
|
5820 | SolutionPath = *Undefined* | |
|
5821 | SourceFilesProjectOutputGroupDependsOn = PrepareForBuild;AssignTargetPaths | |
|
5822 | SSH_AUTH_SOCK = /run/user/1000/keyring/ssh | |
|
5823 | TargetCulture = * | |
|
5824 | TargetDeployManifestFileName = Implab.application | |
|
5825 | TargetDir = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/ | |
|
5826 | TargetedFrameworkDir = @(_TargetedFrameworkDirectoryItem) | |
|
5827 | TargetedSDKArchitecture = msil | |
|
5828 | TargetedSDKConfiguration = Debug | |
|
5829 | TargetExt = .dll | |
|
5830 | TargetFileName = Implab.dll | |
|
5831 | TargetFramework = netstandard2.0 | |
|
5832 | TargetFrameworkAsMSBuildRuntime = CLR2 | |
|
5833 | TargetFrameworkDirectory = | |
|
5834 | TargetFrameworkIdentifier = .NETStandard | |
|
5835 | TargetFrameworkMoniker = .NETStandard,Version=v2.0 | |
|
5836 | TargetFrameworkMonikerAssemblyAttributesPath = /tmp/.NETStandard,Version=v2.0.AssemblyAttributes.cs | |
|
5837 | TargetFrameworkRootPathSearchPathsOSX = /Library/Frameworks/Mono.framework/External/xbuild-frameworks/ | |
|
5838 | TargetFrameworks = netstandard2.0 | |
|
5839 | TargetFrameworkVersion = v2.0 | |
|
5840 | TargetName = Implab | |
|
5841 | TargetPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
5842 | TargetPlatformDisplayName = Windows 7.0 | |
|
5843 | TargetPlatformIdentifier = Windows | |
|
5844 | TargetPlatformMoniker = Windows,Version=7.0 | |
|
5845 | TargetPlatformRegistryBase = Software\Microsoft\Microsoft SDKs\Windows | |
|
5846 | TargetPlatformSdkPath = | |
|
5847 | TargetPlatformVersion = 7.0 | |
|
5848 | TargetRuntime = Managed | |
|
5849 | TERM = xterm | |
|
5850 | TERM_PROGRAM = vscode | |
|
5851 | TERM_PROGRAM_VERSION = 1.22.2 | |
|
5852 | Title = Implab library | |
|
5853 | ToolDepsJsonGeneratorProject = /usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/GenerateDeps/GenerateDeps.proj | |
|
5854 | TreatWarningsAsErrors = false | |
|
5855 | UnmanagedRegistrationDependsOn = | |
|
5856 | UnmanagedUnregistrationDependsOn = | |
|
5857 | UseCommonOutputDirectory = false | |
|
5858 | UseHostCompilerIfAvailable = true | |
|
5859 | USER = sergey | |
|
5860 | USERNAME = sergey | |
|
5861 | UserProfileRuntimeStorePath = /home/sergey/.dotnet/store | |
|
5862 | UserRuntimeConfig = /home/sergey/projects/ImplabNet/Implab/runtimeconfig.template.json | |
|
5863 | UseSourcePath = true | |
|
5864 | UsingMicrosoftNETSdk = true | |
|
5865 | Utf8Output = true | |
|
5866 | ValidateRuntimeIdentifierCompatibility = false | |
|
5867 | Version = 3.0.10 | |
|
5868 | VisualStudioVersion = 15.0 | |
|
5869 | VSCODE_IPC_HOOK = /run/user/1000/vscode-9081749b-1.22.2-main.sock | |
|
5870 | VSCODE_NLS_CONFIG = {"locale":"ru","availableLanguages":{"*":"ru"}} | |
|
5871 | VSCODE_NODE_CACHED_DATA_DIR_32392 = /home/sergey/.config/Code/CachedData/3aeede733d9a3098f7b4bdc1f66b63b0f48c1ef9 | |
|
5872 | VSCODE_PID = 32392 | |
|
5873 | WarningLevel = 4 | |
|
5874 | WarningsAsErrors = NU1605 | |
|
5875 | WAYLAND_DISPLAY = wayland-0 | |
|
5876 | WebReference_EnableLegacyEventingModel = false | |
|
5877 | WebReference_EnableProperties = true | |
|
5878 | WebReference_EnableSQLTypes = true | |
|
5879 | WINDOWMANAGER = /usr/bin/gnome | |
|
5880 | WMSJSProject = WJProject | |
|
5881 | WMSJSProjectDirectory = JavaScript | |
|
5882 | XAUTHLOCALHOSTNAME = chamber | |
|
5883 | XAUTHORITY = /run/user/1000/mutter/Xauthority | |
|
5884 | XCURSOR_THEME = DMZ | |
|
5885 | XDG_CONFIG_DIRS = /etc/xdg | |
|
5886 | XDG_CURRENT_DESKTOP = GNOME | |
|
5887 | XDG_DATA_DIRS = /home/sergey/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share | |
|
5888 | XDG_MENU_PREFIX = gnome- | |
|
5889 | XDG_RUNTIME_DIR = /run/user/1000 | |
|
5890 | XDG_SEAT = seat0 | |
|
5891 | XDG_SESSION_DESKTOP = gnome | |
|
5892 | XDG_SESSION_ID = 1 | |
|
5893 | XDG_SESSION_TYPE = wayland | |
|
5894 | XDG_VTNR = 2 | |
|
5895 | XKEYSYMDB = /usr/X11R6/lib/X11/XKeysymDB | |
|
5896 | XMODIFIERS = @im=ibus | |
|
5897 | XNLSPATH = /usr/share/X11/nls | |
|
5898 | YieldDuringToolExecution = true | |
|
5899 | ||
|
5900 | Initial Items: | |
|
5901 | _ApplicationManifestFinal | |
|
5902 | bin/Debug/netstandard2.0/Native.Implab.manifest | |
|
5903 | TargetPath = Native.Implab.manifest | |
|
5904 | _DebugSymbolsIntermediatePath | |
|
5905 | obj/Debug/netstandard2.0/Implab.pdb | |
|
5906 | _DebugSymbolsOutputPath | |
|
5907 | bin/Debug/netstandard2.0/Implab.pdb | |
|
5908 | _DeploymentManifestEntryPoint | |
|
5909 | obj/Debug/netstandard2.0/Implab.dll | |
|
5910 | TargetPath = Implab.dll | |
|
5911 | _ImplicitPackageReference | |
|
5912 | NETStandard.Library | |
|
5913 | Version = 1.6.1 | |
|
5914 | IsImplicitlyDefined = true | |
|
5915 | PrivateAssets = All | |
|
5916 | Publish = true | |
|
5917 | _ImplicitPackageReferenceCheck | |
|
5918 | NETStandard.Library | |
|
5919 | Version = 1.6.1 | |
|
5920 | IsImplicitlyDefined = true | |
|
5921 | PrivateAssets = All | |
|
5922 | Publish = true | |
|
5923 | _OutputPathItem | |
|
5924 | bin/Debug/netstandard2.0/ | |
|
5925 | _ResolveComReferenceCache | |
|
5926 | obj/Debug/netstandard2.0/Implab.csproj.ResolveComReference.cache | |
|
5927 | _RestoreSettingsPerFramework | |
|
5928 | d09be6ff-bddb-487f-ae67-b0fd3e3233f2 | |
|
5929 | RestoreAdditionalProjectSources = | |
|
5930 | RestoreAdditionalProjectFallbackFolders = | |
|
5931 | RestoreAdditionalProjectFallbackFoldersExcludes = | |
|
5932 | _UnmanagedRegistrationCache | |
|
5933 | obj/Implab.csproj.UnmanagedRegistration.cache | |
|
5934 | AppConfigFileDestination | |
|
5935 | bin/Debug/netstandard2.0/Implab.dll.config | |
|
5936 | ApplicationManifest | |
|
5937 | obj/Debug/netstandard2.0/Native.Implab.manifest | |
|
5938 | TargetPath = Native.Implab.manifest | |
|
5939 | BuiltProjectOutputGroupKeyOutput | |
|
5940 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.dll | |
|
5941 | IsKeyOutput = true | |
|
5942 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.dll | |
|
5943 | TargetPath = Implab.dll | |
|
5944 | Compile | |
|
5945 | AbstractEvent.cs | |
|
5946 | Automaton/AutomatonConst.cs | |
|
5947 | Automaton/AutomatonTransition.cs | |
|
5948 | Automaton/DFATable.cs | |
|
5949 | Automaton/IAlphabet.cs | |
|
5950 | Automaton/IAlphabetBuilder.cs | |
|
5951 | Automaton/IDFATable.cs | |
|
5952 | Automaton/IDFATableBuilder.cs | |
|
5953 | Automaton/IndexedAlphabetBase.cs | |
|
5954 | Automaton/MapAlphabet.cs | |
|
5955 | Automaton/ParserException.cs | |
|
5956 | Automaton/RegularExpressions/AltToken.cs | |
|
5957 | Automaton/RegularExpressions/BinaryToken.cs | |
|
5958 | Automaton/RegularExpressions/CatToken.cs | |
|
5959 | Automaton/RegularExpressions/EmptyToken.cs | |
|
5960 | Automaton/RegularExpressions/EndToken.cs | |
|
5961 | Automaton/RegularExpressions/EndTokenT.cs | |
|
5962 | Automaton/RegularExpressions/ITaggedDFABuilder.cs | |
|
5963 | Automaton/RegularExpressions/IVisitor.cs | |
|
5964 | Automaton/RegularExpressions/RegularDFA.cs | |
|
5965 | Automaton/RegularExpressions/RegularExpressionVisitor.cs | |
|
5966 | Automaton/RegularExpressions/RegularExpressionVisitorT.cs | |
|
5967 | Automaton/RegularExpressions/StarToken.cs | |
|
5968 | Automaton/RegularExpressions/SymbolToken.cs | |
|
5969 | Automaton/RegularExpressions/Token.cs | |
|
5970 | Components/Disposable.cs | |
|
5971 | Components/DisposablePool.cs | |
|
5972 | Components/ExecutionState.cs | |
|
5973 | Components/IAsyncComponent.cs | |
|
5974 | Components/IFactory.cs | |
|
5975 | Components/IInitializable.cs | |
|
5976 | Components/IRunnable.cs | |
|
5977 | Components/IServiceLocator.cs | |
|
5978 | Components/LazyAndWeak.cs | |
|
5979 | Components/ObjectPool.cs | |
|
5980 | Components/PollingComponent.cs | |
|
5981 | Components/RunnableComponent.cs | |
|
5982 | Components/ServiceLocator.cs | |
|
5983 | Components/StateChangeEventArgs.cs | |
|
5984 | CustomEqualityComparer.cs | |
|
5985 | Deferred.cs | |
|
5986 | Deferred`1.cs | |
|
5987 | Diagnostics/ActivityScope.cs | |
|
5988 | Diagnostics/LogicalOperation.cs | |
|
5989 | Diagnostics/LogicalOperationScope.cs | |
|
5990 | Diagnostics/SimpleTraceListener.cs | |
|
5991 | Diagnostics/Trace.cs | |
|
5992 | Diagnostics/TraceEventCodes.cs | |
|
5993 | Diagnostics/TraceSourceAttribute.cs | |
|
5994 | ExceptionHelpers.cs | |
|
5995 | Formats/ByteAlphabet.cs | |
|
5996 | Formats/CharAlphabet.cs | |
|
5997 | Formats/CharMap.cs | |
|
5998 | Formats/FastInpurScanner.cs | |
|
5999 | Formats/Grammar.cs | |
|
6000 | Formats/InputScanner.cs | |
|
6001 | Formats/Json/JsonElementContext.cs | |
|
6002 | Formats/Json/JsonElementType.cs | |
|
6003 | Formats/Json/JsonGrammar.cs | |
|
6004 | Formats/Json/JsonReader.cs | |
|
6005 | Formats/Json/JsonScanner.cs | |
|
6006 | Formats/Json/JsonStringScanner.cs | |
|
6007 | Formats/Json/JsonTextScanner.cs | |
|
6008 | Formats/Json/JsonTokenType.cs | |
|
6009 | Formats/Json/JsonWriter.cs | |
|
6010 | Formats/Json/StringTranslator.cs | |
|
6011 | IDispatcher.cs | |
|
6012 | IPromise.cs | |
|
6013 | IPromiseT.cs | |
|
6014 | IResolvable.cs | |
|
6015 | IResolvable`1.cs | |
|
6016 | Messaging/IConsumer.cs | |
|
6017 | Messaging/IProducer.cs | |
|
6018 | Messaging/ISession.cs | |
|
6019 | Parallels/AsyncQueue.cs | |
|
6020 | Parallels/BlockingQueue.cs | |
|
6021 | Parallels/DispatchPool.cs | |
|
6022 | Parallels/SharedLock.cs | |
|
6023 | Parallels/Signal.cs | |
|
6024 | Parallels/SimpleAsyncQueue.cs | |
|
6025 | Parallels/SyncContextDispatcher.cs | |
|
6026 | Parallels/ThreadPoolDispatcher.cs | |
|
6027 | Promise.cs | |
|
6028 | Promise`1.cs | |
|
6029 | PromiseActionReaction.cs | |
|
6030 | PromiseActionReaction`1.cs | |
|
6031 | PromiseAll.cs | |
|
6032 | PromiseAll`1.cs | |
|
6033 | PromiseAwaiter.cs | |
|
6034 | PromiseAwaiter`1.cs | |
|
6035 | PromiseExecutor.cs | |
|
6036 | PromiseExecutor`1.cs | |
|
6037 | PromiseExtensions.cs | |
|
6038 | PromiseFuncReaction`1.cs | |
|
6039 | PromiseFuncReaction`2.cs | |
|
6040 | PromiseHandler.cs | |
|
6041 | PromiseState.cs | |
|
6042 | PromiseTransientException.cs | |
|
6043 | RejectedPromise.cs | |
|
6044 | RejectedPromise`1.cs | |
|
6045 | ResolvedPromise.cs | |
|
6046 | ResolvedPromise`1.cs | |
|
6047 | Safe.cs | |
|
6048 | TaskHelpers.cs | |
|
6049 | Xml/JsonXmlCaseTransform.cs | |
|
6050 | Xml/JsonXmlReader.cs | |
|
6051 | Xml/JsonXmlReaderOptions.cs | |
|
6052 | Xml/JsonXmlReaderPosition.cs | |
|
6053 | Xml/SerializationHelpers.cs | |
|
6054 | Xml/SerializersPool.cs | |
|
6055 | Xml/XmlNameContext.cs | |
|
6056 | Xml/XmlSimpleAttribute.cs | |
|
6057 | Xml/XmlToJson.cs | |
|
6058 | CopyUpToDateMarker | |
|
6059 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.csproj.CopyComplete | |
|
6060 | DebugSymbolsProjectOutputGroupOutput | |
|
6061 | /home/sergey/projects/ImplabNet/Implab/obj/Debug/netstandard2.0/Implab.pdb | |
|
6062 | FinalOutputPath = /home/sergey/projects/ImplabNet/Implab/bin/Debug/netstandard2.0/Implab.pdb | |
|
6063 | TargetPath = Implab.pdb | |
|
6064 | DeployManifest | |
|
6065 | obj/Debug/netstandard2.0/Implab.application | |
|
6066 | TargetPath = Implab.application | |
|
6067 | EmbeddedResource | |
|
6068 | Xml/json.xsl | |
|
6069 | GenerateRuntimeConfigurationFilesInputs | |
|
6070 | /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json | |
|
6071 | IntermediateAssembly | |
|
6072 | obj/Debug/netstandard2.0/Implab.dll | |
|
6073 | None | |
|
6074 | Implab.nuspec | |
|
6075 | implab.snk | |
|
6076 | license.txt | |
|
6077 | Xml/json.xsl | |
|
6078 | Xml/readme.txt | |
|
6079 | PackageReference | |
|
6080 | NETStandard.Library | |
|
6081 | Version = 1.6.1 | |
|
6082 | IsImplicitlyDefined = true | |
|
6083 | PrivateAssets = All | |
|
6084 | Publish = true | |
|
6085 | PreprocessorValue | |
|
6086 | assemblyname | |
|
6087 | Value = Implab | |
|
6088 | filename | |
|
6089 | Value = Implab.csproj | |
|
6090 | fullpath | |
|
6091 | Value = /home/sergey/projects/ImplabNet/Implab | |
|
6092 | outputfilename | |
|
6093 | Value = Implab.dll | |
|
6094 | rootnamespace | |
|
6095 | Value = Implab | |
|
6096 | ProjectCapability | |
|
6097 | AllTargetOutputGroups | |
|
6098 | AssemblyReferences | |
|
6099 | BuildWindowsDesktopTarget | |
|
6100 | COMReferences | |
|
6101 | CSharp | |
|
6102 | DeclaredSourceItems | |
|
6103 | FolderPublish | |
|
6104 | GenerateDocumentationFile | |
|
6105 | LanguageService | |
|
6106 | Managed | |
|
6107 | OutputGroups | |
|
6108 | Pack | |
|
6109 | ProjectReferences | |
|
6110 | ReferencesFolder | |
|
6111 | RelativePathDerivedDefaultNamespace | |
|
6112 | SharedProjectReferences | |
|
6113 | SingleFileGenerators | |
|
6114 | UserSourceItems | |
|
6115 | VisualStudioWellKnownOutputGroups | |
|
6116 | PropertyPageSchema | |
|
6117 | /usr/lib/mono/msbuild/15.0/bin/assemblyreference.xaml | |
|
6118 | Context = ;BrowseObject | |
|
6119 | /usr/lib/mono/msbuild/15.0/bin/COMReference.xaml | |
|
6120 | Context = ;BrowseObject | |
|
6121 | /usr/lib/mono/msbuild/15.0/bin/Content.xaml | |
|
6122 | Context = File;BrowseObject | |
|
6123 | /usr/lib/mono/msbuild/15.0/bin/CSharp.BrowseObject.xaml | |
|
6124 | Context = BrowseObject | |
|
6125 | /usr/lib/mono/msbuild/15.0/bin/CSharp.ProjectItemsSchema.xaml | |
|
6126 | /usr/lib/mono/msbuild/15.0/bin/CSharp.xaml | |
|
6127 | Context = File | |
|
6128 | /usr/lib/mono/msbuild/15.0/bin/Debugger_General.xaml | |
|
6129 | Context = Project | |
|
6130 | /usr/lib/mono/msbuild/15.0/bin/EmbeddedResource.xaml | |
|
6131 | Context = File;BrowseObject | |
|
6132 | /usr/lib/mono/msbuild/15.0/bin/Folder.xaml | |
|
6133 | Context = File;BrowseObject | |
|
6134 | /usr/lib/mono/msbuild/15.0/bin/General.BrowseObject.xaml | |
|
6135 | Context = BrowseObject | |
|
6136 | /usr/lib/mono/msbuild/15.0/bin/General.xaml | |
|
6137 | Context = Project | |
|
6138 | /usr/lib/mono/msbuild/15.0/bin/General_File.xaml | |
|
6139 | Context = File | |
|
6140 | /usr/lib/mono/msbuild/15.0/bin/None.xaml | |
|
6141 | Context = File;BrowseObject | |
|
6142 | /usr/lib/mono/msbuild/15.0/bin/ProjectItemsSchema.xaml | |
|
6143 | /usr/lib/mono/msbuild/15.0/bin/ProjectReference.xaml | |
|
6144 | Context = ;BrowseObject | |
|
6145 | /usr/lib/mono/msbuild/15.0/bin/ResolvedAssemblyReference.xaml | |
|
6146 | Context = ProjectSubscriptionService;BrowseObject | |
|
6147 | /usr/lib/mono/msbuild/15.0/bin/ResolvedCOMReference.xaml | |
|
6148 | Context = ProjectSubscriptionService;BrowseObject | |
|
6149 | /usr/lib/mono/msbuild/15.0/bin/ResolvedProjectReference.xaml | |
|
6150 | Context = ProjectSubscriptionService;BrowseObject | |
|
6151 | /usr/lib/mono/msbuild/15.0/bin/SCC.xaml | |
|
6152 | Context = Invisible | |
|
6153 | /usr/lib/mono/msbuild/15.0/bin/SpecialFolder.xaml | |
|
6154 | Context = File;ProjectSubscriptionService | |
|
6155 | SupportedTargetFramework | |
|
6156 | .NETCoreApp,Version=v1.0 | |
|
6157 | DisplayName = .NET Core 1.0 | |
|
6158 | .NETCoreApp,Version=v1.1 | |
|
6159 | DisplayName = .NET Core 1.1 | |
|
6160 | .NETCoreApp,Version=v2.0 | |
|
6161 | DisplayName = .NET Core 2.0 | |
|
6162 | .NETStandard,Version=v1.0 | |
|
6163 | DisplayName = .NET Standard 1.0 | |
|
6164 | .NETStandard,Version=v1.1 | |
|
6165 | DisplayName = .NET Standard 1.1 | |
|
6166 | .NETStandard,Version=v1.2 | |
|
6167 | DisplayName = .NET Standard 1.2 | |
|
6168 | .NETStandard,Version=v1.3 | |
|
6169 | DisplayName = .NET Standard 1.3 | |
|
6170 | .NETStandard,Version=v1.4 | |
|
6171 | DisplayName = .NET Standard 1.4 | |
|
6172 | .NETStandard,Version=v1.5 | |
|
6173 | DisplayName = .NET Standard 1.5 | |
|
6174 | .NETStandard,Version=v1.6 | |
|
6175 | DisplayName = .NET Standard 1.6 | |
|
6176 | .NETStandard,Version=v2.0 | |
|
6177 | DisplayName = .NET Standard 2.0 | |
|
6178 | ||
|
6179 | Building with tools version "15.0". | |
|
6180 | Project file contains ToolsVersion="". This toolset may be unknown or missing, in which case you may be able to resolve this by installing the appropriate version of MSBuild, or the build may have been forced to a particular ToolsVersion for policy reasons. Treating the project as if it had ToolsVersion="15.0". For more information, please see http://go.microsoft.com/fwlink/?LinkId=293424. | |
|
6181 | Target "_GetProjectJsonPath: (TargetId:25)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreProjectStyle" depends on it): | |
|
6182 | Task "GetRestoreProjectJsonPathTask" skipped, due to false condition; ( '$(RestoreProjectStyle)' == 'ProjectJson' OR '$(RestoreProjectStyle)' == '' ) was evaluated as ( 'PackageReference' == 'ProjectJson' OR 'PackageReference' == '' ). | |
|
6183 | Done building target "_GetProjectJsonPath" in project "Implab.csproj".: (TargetId:25) | |
|
6184 | Target "_CheckForUnsupportedNETCoreVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' And '$(NETCoreAppMaximumVersion)' != '') was evaluated as ('.NETStandard' == '.NETCoreApp' And '' != ''). | |
|
6185 | Target "_CheckForUnsupportedNETStandardVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(NETStandardMaximumVersion)' != '') was evaluated as ('.NETStandard' == '.NETStandard' And '' != ''). | |
|
6186 | Target "CheckForImplicitPackageReferenceOverrides: (TargetId:26)" in file "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "CollectPackageReferences" depends on it): | |
|
6187 | Set Property: ImplicitPackageReferenceInformationLink=https://aka.ms/sdkimplicitrefs | |
|
6188 | Using "CheckForImplicitPackageReferenceOverrides" task from assembly "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/../tools/net46/Microsoft.NET.Build.Tasks.dll". | |
|
6189 | Task "CheckForImplicitPackageReferenceOverrides" (TaskId:25) | |
|
6190 | Task Parameter: | |
|
6191 | PackageReferenceItems= | |
|
6192 | NETStandard.Library | |
|
6193 | IsImplicitlyDefined=true | |
|
6194 | PrivateAssets=All | |
|
6195 | Publish=true | |
|
6196 | Version=1.6.1 (TaskId:25) | |
|
6197 | Task Parameter:MoreInformationLink=https://aka.ms/sdkimplicitrefs (TaskId:25) | |
|
6198 | Done executing task "CheckForImplicitPackageReferenceOverrides". (TaskId:25) | |
|
6199 | Done building target "CheckForImplicitPackageReferenceOverrides" in project "Implab.csproj".: (TargetId:26) | |
|
6200 | Target "CollectPackageReferences: (TargetId:27)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreProjectStyle" depends on it): | |
|
6201 | Done building target "CollectPackageReferences" in project "Implab.csproj".: (TargetId:27) | |
|
6202 | Target "CheckForImplicitPackageReferenceOverridesBeforeRestore: (TargetId:28)" in file "/usr/lib/mono/msbuild/15.0/bin/Sdks/Microsoft.NET.Sdk/build/Microsoft.NET.Sdk.DefaultItems.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GetRestoreProjectStyle" depends on it): | |
|
6203 | Done building target "CheckForImplicitPackageReferenceOverridesBeforeRestore" in project "Implab.csproj".: (TargetId:28) | |
|
6204 | Target "_GetRestoreProjectStyle: (TargetId:29)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (target "_GenerateProjectRestoreGraphPerFramework" depends on it): | |
|
6205 | Done building target "_GetRestoreProjectStyle" in project "Implab.csproj".: (TargetId:29) | |
|
6206 | Target "CollectPackageReferences" skipped. Previously built successfully. | |
|
6207 | Target "PrepRestoreForStoreProjects" skipped, due to false condition; ('$(StorePackageName)' != '') was evaluated as ('' != ''). | |
|
6208 | Target "_GenerateProjectRestoreGraphPerFramework: (TargetId:30)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
6209 | Using "GetRestoreProjectReferencesTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
6210 | Task "GetRestoreProjectReferencesTask" (TaskId:26) | |
|
6211 | Task Parameter:ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:26) | |
|
6212 | Task Parameter:TargetFrameworks=netstandard2.0 (TaskId:26) | |
|
6213 | Task Parameter:ParentProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:26) | |
|
6214 | (in) ProjectUniqueName '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:26) | |
|
6215 | (in) TargetFrameworks 'netstandard2.0' (TaskId:26) | |
|
6216 | (in) ProjectReferences '' (TaskId:26) | |
|
6217 | (in) ParentProjectPath '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:26) | |
|
6218 | Done executing task "GetRestoreProjectReferencesTask". (TaskId:26) | |
|
6219 | Using "GetRestorePackageReferencesTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
6220 | Task "GetRestorePackageReferencesTask" (TaskId:27) | |
|
6221 | Task Parameter:ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj (TaskId:27) | |
|
6222 | Task Parameter: | |
|
6223 | PackageReferences= | |
|
6224 | NETStandard.Library | |
|
6225 | IsImplicitlyDefined=true | |
|
6226 | PrivateAssets=All | |
|
6227 | Publish=true | |
|
6228 | Version=1.6.1 (TaskId:27) | |
|
6229 | Task Parameter:TargetFrameworks=netstandard2.0 (TaskId:27) | |
|
6230 | (in) ProjectUniqueName '/home/sergey/projects/ImplabNet/Implab/Implab.csproj' (TaskId:27) | |
|
6231 | (in) TargetFrameworks 'netstandard2.0' (TaskId:27) | |
|
6232 | (in) PackageReferences 'NETStandard.Library' (TaskId:27) | |
|
6233 | Output Item(s): | |
|
6234 | _RestoreGraphEntry= | |
|
6235 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6236 | Id=NETStandard.Library | |
|
6237 | IsImplicitlyDefined=true | |
|
6238 | PrivateAssets=All | |
|
6239 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6240 | TargetFrameworks=netstandard2.0 | |
|
6241 | Type=Dependency | |
|
6242 | VersionRange=1.6.1 (TaskId:27) | |
|
6243 | Done executing task "GetRestorePackageReferencesTask". (TaskId:27) | |
|
6244 | Set Property: _CombinedFallbacks=;;net461 | |
|
6245 | Added Item(s): | |
|
6246 | _RestoreGraphEntry= | |
|
6247 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6248 | AssetTargetFallback=;net461 | |
|
6249 | PackageTargetFallback= | |
|
6250 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6251 | TargetFramework=netstandard2.0 | |
|
6252 | Type=TargetFrameworkInformation | |
|
6253 | Done building target "_GenerateProjectRestoreGraphPerFramework" in project "Implab.csproj".: (TargetId:30) | |
|
6254 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GenerateProjectRestoreGraphPerFramework target(s)). | |
|
6255 | _GenerateRestoreDependencies: (TargetId:24) | |
|
6256 | Output Item(s): | |
|
6257 | _RestoreGraphEntry= | |
|
6258 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6259 | Id=NETStandard.Library | |
|
6260 | IsImplicitlyDefined=true | |
|
6261 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6262 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6263 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6264 | PrivateAssets=All | |
|
6265 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6266 | TargetFrameworks=netstandard2.0 | |
|
6267 | Type=Dependency | |
|
6268 | VersionRange=1.6.1 | |
|
6269 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6270 | AssetTargetFallback=;net461 | |
|
6271 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6272 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6273 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6274 | PackageTargetFallback= | |
|
6275 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6276 | TargetFramework=netstandard2.0 | |
|
6277 | Type=TargetFrameworkInformation (TaskId:24) | |
|
6278 | Done executing task "MSBuild". (TaskId:24) | |
|
6279 | Done building target "_GenerateRestoreDependencies" in project "Implab.csproj".: (TargetId:24) | |
|
6280 | Target "_GenerateProjectRestoreGraph: (TargetId:31)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
6281 | Done building target "_GenerateProjectRestoreGraph" in project "Implab.csproj".: (TargetId:31) | |
|
6282 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (_GenerateProjectRestoreGraph target(s)). | |
|
6283 | _GenerateRestoreGraph: (TargetId:14) | |
|
6284 | Output Item(s): | |
|
6285 | _RestoreGraphEntry= | |
|
6286 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
6287 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6288 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6289 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6290 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6291 | Type=RestoreSpec | |
|
6292 | 2b4bd29e-c8dd-47b2-ae08-91ae55b83d3f | |
|
6293 | ConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config | |
|
6294 | CrossTargeting=true | |
|
6295 | FallbackFolders= | |
|
6296 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6297 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6298 | NoWarn=1701;1702;1705 | |
|
6299 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6300 | OutputPath=/home/sergey/projects/ImplabNet/Implab/obj/ | |
|
6301 | PackagesPath=/home/sergey/.nuget/packages/ | |
|
6302 | ProjectName=Implab | |
|
6303 | ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6304 | ProjectStyle=PackageReference | |
|
6305 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6306 | RestoreLegacyPackagesDirectory= | |
|
6307 | RuntimeIdentifiers=; | |
|
6308 | RuntimeSupports= | |
|
6309 | SkipContentFileWrite= | |
|
6310 | Sources=https://api.nuget.org/v3/index.json | |
|
6311 | TargetFrameworks=netstandard2.0 | |
|
6312 | TreatWarningsAsErrors=false | |
|
6313 | Type=ProjectSpec | |
|
6314 | ValidateRuntimeAssets=false | |
|
6315 | Version=3.0.10 | |
|
6316 | WarningsAsErrors=NU1605 | |
|
6317 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6318 | Id=NETStandard.Library | |
|
6319 | IsImplicitlyDefined=true | |
|
6320 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6321 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6322 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6323 | PrivateAssets=All | |
|
6324 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6325 | TargetFrameworks=netstandard2.0 | |
|
6326 | Type=Dependency | |
|
6327 | VersionRange=1.6.1 | |
|
6328 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6329 | AssetTargetFallback=;net461 | |
|
6330 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6331 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6332 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6333 | PackageTargetFallback= | |
|
6334 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6335 | TargetFramework=netstandard2.0 | |
|
6336 | Type=TargetFrameworkInformation (TaskId:21) | |
|
6337 | Done executing task "MsBuild". (TaskId:21) | |
|
6338 | Done building target "_GenerateRestoreGraph" in project "Implab.csproj".: (TargetId:14) | |
|
6339 | Target "Restore: (TargetId:32)" in file "/usr/lib/mono/msbuild/15.0/bin/NuGet.targets" from project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (entry point): | |
|
6340 | Task "RemoveDuplicates" (TaskId:28) | |
|
6341 | Task Parameter: | |
|
6342 | Inputs= | |
|
6343 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
6344 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6345 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6346 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6347 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6348 | Type=RestoreSpec | |
|
6349 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
6350 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6351 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6352 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6353 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6354 | Type=RestoreSpec | |
|
6355 | 2b4bd29e-c8dd-47b2-ae08-91ae55b83d3f | |
|
6356 | ConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config | |
|
6357 | CrossTargeting=true | |
|
6358 | FallbackFolders= | |
|
6359 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6360 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6361 | NoWarn=1701;1702;1705 | |
|
6362 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6363 | OutputPath=/home/sergey/projects/ImplabNet/Implab/obj/ | |
|
6364 | PackagesPath=/home/sergey/.nuget/packages/ | |
|
6365 | ProjectName=Implab | |
|
6366 | ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6367 | ProjectStyle=PackageReference | |
|
6368 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6369 | RestoreLegacyPackagesDirectory= | |
|
6370 | RuntimeIdentifiers=; | |
|
6371 | RuntimeSupports= | |
|
6372 | SkipContentFileWrite= | |
|
6373 | Sources=https://api.nuget.org/v3/index.json | |
|
6374 | TargetFrameworks=netstandard2.0 | |
|
6375 | TreatWarningsAsErrors=false | |
|
6376 | Type=ProjectSpec | |
|
6377 | ValidateRuntimeAssets=false | |
|
6378 | Version=3.0.10 | |
|
6379 | WarningsAsErrors=NU1605 | |
|
6380 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6381 | Id=NETStandard.Library | |
|
6382 | IsImplicitlyDefined=true | |
|
6383 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6384 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6385 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6386 | PrivateAssets=All | |
|
6387 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6388 | TargetFrameworks=netstandard2.0 | |
|
6389 | Type=Dependency | |
|
6390 | VersionRange=1.6.1 | |
|
6391 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6392 | AssetTargetFallback=;net461 | |
|
6393 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6394 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6395 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6396 | PackageTargetFallback= | |
|
6397 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6398 | TargetFramework=netstandard2.0 | |
|
6399 | Type=TargetFrameworkInformation (TaskId:28) | |
|
6400 | Output Item(s): | |
|
6401 | _RestoreGraphEntryFiltered= | |
|
6402 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
6403 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6404 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6405 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6406 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6407 | Type=RestoreSpec | |
|
6408 | 2b4bd29e-c8dd-47b2-ae08-91ae55b83d3f | |
|
6409 | ConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config | |
|
6410 | CrossTargeting=true | |
|
6411 | FallbackFolders= | |
|
6412 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6413 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6414 | NoWarn=1701;1702;1705 | |
|
6415 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6416 | OutputPath=/home/sergey/projects/ImplabNet/Implab/obj/ | |
|
6417 | PackagesPath=/home/sergey/.nuget/packages/ | |
|
6418 | ProjectName=Implab | |
|
6419 | ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6420 | ProjectStyle=PackageReference | |
|
6421 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6422 | RestoreLegacyPackagesDirectory= | |
|
6423 | RuntimeIdentifiers=; | |
|
6424 | RuntimeSupports= | |
|
6425 | SkipContentFileWrite= | |
|
6426 | Sources=https://api.nuget.org/v3/index.json | |
|
6427 | TargetFrameworks=netstandard2.0 | |
|
6428 | TreatWarningsAsErrors=false | |
|
6429 | Type=ProjectSpec | |
|
6430 | ValidateRuntimeAssets=false | |
|
6431 | Version=3.0.10 | |
|
6432 | WarningsAsErrors=NU1605 | |
|
6433 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6434 | Id=NETStandard.Library | |
|
6435 | IsImplicitlyDefined=true | |
|
6436 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6437 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6438 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6439 | PrivateAssets=All | |
|
6440 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6441 | TargetFrameworks=netstandard2.0 | |
|
6442 | Type=Dependency | |
|
6443 | VersionRange=1.6.1 | |
|
6444 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6445 | AssetTargetFallback=;net461 | |
|
6446 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6447 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6448 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6449 | PackageTargetFallback= | |
|
6450 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6451 | TargetFramework=netstandard2.0 | |
|
6452 | Type=TargetFrameworkInformation (TaskId:28) | |
|
6453 | Done executing task "RemoveDuplicates". (TaskId:28) | |
|
6454 | Using "RestoreTask" task from assembly "/usr/lib/mono/msbuild/15.0/bin/NuGet.Build.Tasks.dll". | |
|
6455 | Task "RestoreTask" (TaskId:29) | |
|
6456 | Task Parameter: | |
|
6457 | RestoreGraphItems= | |
|
6458 | 6e24f880-5773-43cd-ae0d-dcf16d54cbec | |
|
6459 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6460 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6461 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6462 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6463 | Type=RestoreSpec | |
|
6464 | 2b4bd29e-c8dd-47b2-ae08-91ae55b83d3f | |
|
6465 | ConfigFilePaths=/home/sergey/.config/NuGet/NuGet.Config | |
|
6466 | CrossTargeting=true | |
|
6467 | FallbackFolders= | |
|
6468 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6469 | MSBuildSourceTargetName=_IsProjectRestoreSupported | |
|
6470 | NoWarn=1701;1702;1705 | |
|
6471 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6472 | OutputPath=/home/sergey/projects/ImplabNet/Implab/obj/ | |
|
6473 | PackagesPath=/home/sergey/.nuget/packages/ | |
|
6474 | ProjectName=Implab | |
|
6475 | ProjectPath=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6476 | ProjectStyle=PackageReference | |
|
6477 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6478 | RestoreLegacyPackagesDirectory= | |
|
6479 | RuntimeIdentifiers=; | |
|
6480 | RuntimeSupports= | |
|
6481 | SkipContentFileWrite= | |
|
6482 | Sources=https://api.nuget.org/v3/index.json | |
|
6483 | TargetFrameworks=netstandard2.0 | |
|
6484 | TreatWarningsAsErrors=false | |
|
6485 | Type=ProjectSpec | |
|
6486 | ValidateRuntimeAssets=false | |
|
6487 | Version=3.0.10 | |
|
6488 | WarningsAsErrors=NU1605 | |
|
6489 | 5a721f1e-dbbd-47fa-abf9-2e94c7d60aaf | |
|
6490 | Id=NETStandard.Library | |
|
6491 | IsImplicitlyDefined=true | |
|
6492 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6493 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6494 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6495 | PrivateAssets=All | |
|
6496 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6497 | TargetFrameworks=netstandard2.0 | |
|
6498 | Type=Dependency | |
|
6499 | VersionRange=1.6.1 | |
|
6500 | 9fd3f395-4486-4fbc-90c6-e4a9440b0116 | |
|
6501 | AssetTargetFallback=;net461 | |
|
6502 | MSBuildSourceProjectFile=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6503 | MSBuildSourceTargetName=_GenerateProjectRestoreGraphPerFramework | |
|
6504 | OriginalItemSpec=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6505 | PackageTargetFallback= | |
|
6506 | ProjectUniqueName=/home/sergey/projects/ImplabNet/Implab/Implab.csproj | |
|
6507 | TargetFramework=netstandard2.0 | |
|
6508 | Type=TargetFrameworkInformation (TaskId:29) | |
|
6509 | Task Parameter:RestoreRecursive=True (TaskId:29) | |
|
6510 | Task Parameter:HideWarningsAndErrors=False (TaskId:29) | |
|
6511 | (in) RestoreGraphItems Count '4' (TaskId:29) | |
|
6512 | (in) RestoreDisableParallel 'False' (TaskId:29) | |
|
6513 | (in) RestoreNoCache 'False' (TaskId:29) | |
|
6514 | (in) RestoreIgnoreFailedSources 'False' (TaskId:29) | |
|
6515 | (in) RestoreRecursive 'True' (TaskId:29) | |
|
6516 | (in) RestoreForce 'False' (TaskId:29) | |
|
6517 | (in) HideWarningsAndErrors 'False' (TaskId:29) | |
|
6518 | Running non-parallel restore. (TaskId:29) | |
|
6519 | Reading project file /home/sergey/projects/ImplabNet/Implab/Implab.csproj. (TaskId:29) | |
|
6520 | The restore inputs for 'Implab' have changed. Continuing restore. (TaskId:29) | |
|
6521 | Restoring packages for /home/sergey/projects/ImplabNet/Implab/Implab.csproj... (TaskId:29) | |
|
6522 | Restoring packages for .NETStandard,Version=v2.0... (TaskId:29) | |
|
6523 | Resolving conflicts for .NETStandard,Version=v2.0... (TaskId:29) | |
|
6524 | Checking compatibility of packages on .NETStandard,Version=v2.0. (TaskId:29) | |
|
6525 | Checking compatibility for Implab 3.0.10 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6526 | Checking compatibility for NETStandard.Library 1.6.1 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6527 | Checking compatibility for Microsoft.NETCore.Platforms 1.1.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6528 | Checking compatibility for Microsoft.Win32.Primitives 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6529 | Checking compatibility for System.AppContext 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6530 | Checking compatibility for System.Collections 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6531 | Checking compatibility for System.Collections.Concurrent 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6532 | Checking compatibility for System.Console 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6533 | Checking compatibility for System.Diagnostics.Debug 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6534 | Checking compatibility for System.Diagnostics.Tools 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6535 | Checking compatibility for System.Diagnostics.Tracing 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6536 | Checking compatibility for System.Globalization 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6537 | Checking compatibility for System.Globalization.Calendars 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6538 | Checking compatibility for System.IO 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6539 | Checking compatibility for System.IO.Compression 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6540 | Checking compatibility for System.IO.Compression.ZipFile 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6541 | Checking compatibility for System.IO.FileSystem 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6542 | Checking compatibility for System.IO.FileSystem.Primitives 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6543 | Checking compatibility for System.Linq 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6544 | Checking compatibility for System.Linq.Expressions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6545 | Checking compatibility for System.Net.Http 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6546 | Checking compatibility for System.Net.Primitives 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6547 | Checking compatibility for System.Net.Sockets 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6548 | Checking compatibility for System.ObjectModel 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6549 | Checking compatibility for System.Reflection 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6550 | Checking compatibility for System.Reflection.Extensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6551 | Checking compatibility for System.Reflection.Primitives 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6552 | Checking compatibility for System.Resources.ResourceManager 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6553 | Checking compatibility for System.Runtime 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6554 | Checking compatibility for System.Runtime.Extensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6555 | Checking compatibility for System.Runtime.Handles 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6556 | Checking compatibility for System.Runtime.InteropServices 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6557 | Checking compatibility for System.Runtime.InteropServices.RuntimeInformation 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6558 | Checking compatibility for System.Runtime.Numerics 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6559 | Checking compatibility for System.Security.Cryptography.Algorithms 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6560 | Checking compatibility for System.Security.Cryptography.Encoding 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6561 | Checking compatibility for System.Security.Cryptography.Primitives 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6562 | Checking compatibility for System.Security.Cryptography.X509Certificates 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6563 | Checking compatibility for System.Text.Encoding 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6564 | Checking compatibility for System.Text.Encoding.Extensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6565 | Checking compatibility for System.Text.RegularExpressions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6566 | Checking compatibility for System.Threading 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6567 | Checking compatibility for System.Threading.Tasks 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6568 | Checking compatibility for System.Threading.Timer 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6569 | Checking compatibility for System.Xml.ReaderWriter 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6570 | Checking compatibility for System.Xml.XDocument 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6571 | Checking compatibility for Microsoft.NETCore.Targets 1.1.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6572 | Checking compatibility for runtime.native.System 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6573 | Checking compatibility for runtime.native.System.IO.Compression 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6574 | Checking compatibility for System.Buffers 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6575 | Checking compatibility for System.Reflection.Emit 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6576 | Checking compatibility for System.Reflection.Emit.ILGeneration 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6577 | Checking compatibility for System.Reflection.Emit.Lightweight 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6578 | Checking compatibility for System.Reflection.TypeExtensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6579 | Checking compatibility for runtime.native.System.Net.Http 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6580 | Checking compatibility for runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6581 | Checking compatibility for System.Diagnostics.DiagnosticSource 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6582 | Checking compatibility for System.Globalization.Extensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6583 | Checking compatibility for System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6584 | Checking compatibility for runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6585 | Checking compatibility for System.Security.Cryptography.Cng 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6586 | Checking compatibility for System.Security.Cryptography.Csp 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6587 | Checking compatibility for System.Threading.Tasks.Extensions 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6588 | Checking compatibility for runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6589 | Checking compatibility for runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6590 | Checking compatibility for runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6591 | Checking compatibility for runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6592 | Checking compatibility for runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6593 | Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6594 | Checking compatibility for runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6595 | Checking compatibility for runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6596 | Checking compatibility for runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6597 | Checking compatibility for runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6598 | Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6599 | All packages and projects are compatible with .NETStandard,Version=v2.0. (TaskId:29) | |
|
6600 | Committing restore... (TaskId:29) | |
|
6601 | Writing lock file to disk. Path: /home/sergey/projects/ImplabNet/Implab/obj/project.assets.json (TaskId:29) | |
|
6602 | Writing cache file to disk. Path: /home/sergey/projects/ImplabNet/Implab/obj/Implab.csproj.nuget.cache (TaskId:29) | |
|
6603 | Restore completed in 271.82 ms for /home/sergey/projects/ImplabNet/Implab/Implab.csproj. (TaskId:29) | |
|
6604 | (TaskId:29) | |
|
6605 | NuGet Config files used: (TaskId:29) | |
|
6606 | /home/sergey/.config/NuGet/NuGet.Config (TaskId:29) | |
|
6607 | (TaskId:29) | |
|
6608 | Feeds used: (TaskId:29) | |
|
6609 | https://api.nuget.org/v3/index.json (TaskId:29) | |
|
6610 | Done executing task "RestoreTask". (TaskId:29) | |
|
6611 | Done building target "Restore" in project "Implab.csproj".: (TargetId:32) | |
|
6612 | Done Building Project "/home/sergey/projects/ImplabNet/Implab/Implab.csproj" (restore target(s)). | |
|
6613 | Deferred Messages | |
|
6614 | ||
|
6615 | Detailed Build Summary | |
|
6616 | ====================== | |
|
6617 | (TaskId:0) | |
|
6618 | ||
|
6619 | ============================== Build Hierarchy (IDs represent configurations) ===================================================== | |
|
6620 | Id : Exclusive Time Total Time Path (Targets) | |
|
6621 | ----------------------------------------------------------------------------------------------------------------------------------- (TaskId:0) | |
|
6622 | 0 : 0.818s 1.154s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (restore) (TaskId:0) | |
|
6623 | | 1 : 0.022s 0.022s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_IsProjectRestoreSupported) (TaskId:0) | |
|
6624 | | 2 : 0.014s 0.175s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GenerateRestoreProjectPathWalk) (TaskId:0) | |
|
6625 | | . 3 : 0.161s 0.161s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GenerateRestoreProjectPathItemsPerFramework) (TaskId:0) | |
|
6626 | | 4 : 0.072s 0.092s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GenerateRestoreGraphProjectEntry) (TaskId:0) | |
|
6627 | | . 5 : 0.021s 0.021s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GetRestoreSettingsPerFramework) (TaskId:0) | |
|
6628 | . 6 : 0.008s 0.044s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GenerateProjectRestoreGraph) (TaskId:0) | |
|
6629 | | | 7 : 0.007s 0.007s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (GetAllRuntimeIdentifiers) (TaskId:0) | |
|
6630 | | . 8 : 0.028s 0.028s /home/sergey/projects/ImplabNet/Implab/Implab.csproj (_GenerateProjectRestoreGraphPerFramework) (TaskId:0) | |
|
6631 | ||
|
6632 | ============================== Node Utilization (IDs represent configurations) ==================================================== | |
|
6633 | Timestamp: 1 Duration Cumulative | |
|
6634 | ----------------------------------------------------------------------------------------------------------------------------------- (TaskId:0) | |
|
6635 | 636596543090762300: 0 0.290s 0.290s ##### (TaskId:0) | |
|
6636 | 636596543093661150: 1 0.021s 0.311s (TaskId:0) | |
|
6637 | 636596543093873950: 0 0.038s 0.349s (TaskId:0) | |
|
6638 | 636596543094251210: 2 0.012s 0.361s (TaskId:0) | |
|
6639 | 636596543094374530: 3 0.161s 0.522s ### (TaskId:0) | |
|
6640 | 636596543095986410: 2 0.001s 0.524s (TaskId:0) | |
|
6641 | 636596543096000410: 0 0.004s 0.528s (TaskId:0) | |
|
6642 | 636596543096042510: 4 0.017s 0.545s (TaskId:0) | |
|
6643 | 636596543096214760: 5 0.021s 0.566s (TaskId:0) | |
|
6644 | 636596543096421610: 4 0.055s 0.621s # (TaskId:0) | |
|
6645 | 636596543096967400: 0 0.012s 0.633s (TaskId:0) | |
|
6646 | 636596543097089400: 6 0.003s 0.636s (TaskId:0) | |
|
6647 | 636596543097124200: 7 0.007s 0.643s (TaskId:0) | |
|
6648 | 636596543097196090: 6 0.004s 0.647s (TaskId:0) | |
|
6649 | 636596543097235870: 8 0.028s 0.676s (TaskId:0) | |
|
6650 | 636596543097518220: 6 0.001s 0.677s (TaskId:0) | |
|
6651 | 636596543097528900: 0 0.480s 1.157s ######### (TaskId:0) | |
|
6652 | ----------------------------------------------------------------------------------------------------------------------------------- | |
|
6653 | Utilization: 100.0 Average Utilization: 100.0 (TaskId:0) | |
|
6654 | ||
|
6655 | Project Evaluation Performance Summary: | |
|
6656 | 298 ms /home/sergey/projects/ImplabNet/Implab/Implab.csproj 3 calls | |
|
6657 | ||
|
6658 | Project Performance Summary: | |
|
6659 | 1329 ms /home/sergey/projects/ImplabNet/Implab/Implab.csproj 10 calls | |
|
6660 | 972 ms restore 1 calls | |
|
6661 | 6 ms _IsProjectRestoreSupported 2 calls | |
|
6662 | 174 ms _GenerateRestoreProjectPathWalk 1 calls | |
|
6663 | 8 ms _GenerateRestoreProjectPathItemsPerFramework 1 calls | |
|
6664 | 82 ms _GenerateRestoreGraphProjectEntry 1 calls | |
|
6665 | 10 ms _GetRestoreSettingsPerFramework 1 calls | |
|
6666 | 43 ms _GenerateProjectRestoreGraph 1 calls | |
|
6667 | 7 ms GetAllRuntimeIdentifiers 1 calls | |
|
6668 | 28 ms _GenerateProjectRestoreGraphPerFramework 1 calls | |
|
6669 | ||
|
6670 | Target Performance Summary: | |
|
6671 | 0 ms _GenerateRestoreGraphProjectEntry 1 calls | |
|
6672 | 0 ms _GenerateProjectRestoreGraph 1 calls | |
|
6673 | 0 ms CollectPackageReferences 2 calls | |
|
6674 | 0 ms CheckForImplicitPackageReferenceOverridesBeforeRestore 1 calls | |
|
6675 | 0 ms _GetRestoreProjectStyle 2 calls | |
|
6676 | 0 ms _GetRestoreTargetFrameworksAsItems 1 calls | |
|
6677 | 0 ms _GetRestoreSettingsOverrides 1 calls | |
|
6678 | 0 ms _GetRestoreSettingsPerFramework 1 calls | |
|
6679 | 0 ms _IsProjectRestoreSupported 1 calls | |
|
6680 | 0 ms _GetProjectJsonPath 2 calls | |
|
6681 | 1 ms _GenerateRestoreProjectPathWalk 1 calls | |
|
6682 | 1 ms _GenerateRestoreSpecs 1 calls | |
|
6683 | 1 ms _GenerateRestoreProjectPathItemsPerFramework 1 calls | |
|
6684 | 2 ms _GenerateRestoreProjectSpec 1 calls | |
|
6685 | 4 ms _GenerateDotnetCliToolReferenceSpecs 1 calls | |
|
6686 | 5 ms CheckForImplicitPackageReferenceOverrides 1 calls | |
|
6687 | 8 ms _GetRestoreTargetFrameworksOutput 1 calls | |
|
6688 | 9 ms GetAllRuntimeIdentifiers 2 calls | |
|
6689 | 15 ms _GenerateProjectRestoreGraphPerFramework 1 calls | |
|
6690 | 19 ms _LoadRestoreGraphEntryPoints 1 calls | |
|
6691 | 30 ms _GenerateRestoreDependencies 1 calls | |
|
6692 | 72 ms _GetRestoreSettings 1 calls | |
|
6693 | 117 ms _FilterRestoreGraphProjectInputItems 1 calls | |
|
6694 | 162 ms _GenerateRestoreGraph 1 calls | |
|
6695 | 163 ms _GenerateRestoreProjectPathItems 1 calls | |
|
6696 | 179 ms _GetAllRestoreProjectPathItems 1 calls | |
|
6697 | 468 ms Restore 1 calls | |
|
6698 | ||
|
6699 | Task Performance Summary: | |
|
6700 | 1 ms Message 3 calls | |
|
6701 | 2 ms GetRestoreProjectReferencesTask 1 calls | |
|
6702 | 2 ms ConvertToAbsolutePath 2 calls | |
|
6703 | 4 ms GetRestoreDotnetCliToolsTask 1 calls | |
|
6704 | 4 ms CheckForImplicitPackageReferenceOverrides 1 calls | |
|
6705 | 6 ms GetProjectTargetFrameworksTask 1 calls | |
|
6706 | 12 ms WarnForInvalidProjectsTask 1 calls | |
|
6707 | 13 ms GetRestorePackageReferencesTask 1 calls | |
|
6708 | 16 ms RemoveDuplicates 5 calls | |
|
6709 | 39 ms GetRestoreSettingsTask 1 calls | |
|
6710 | 467 ms RestoreTask 1 calls | |
|
6711 | 638 ms MsBuild 10 calls | |
|
6712 | ||
|
6713 | Build succeeded. | |
|
6714 | 0 Warning(s) | |
|
6715 | 0 Error(s) | |
|
6716 | ||
|
6717 | Time Elapsed 00:00:01.21 |
General Comments 3
ok, latest stable version should be in default
You need to be logged in to leave comments.
Login now