• Как быстрее всего генерировать видео с субтитрами на node.js + ffmpeg?

    @17th Автор вопроса
    Вы правы, вставил в вопрос не ту команду.
    На деле использовали -vf subtitles
  • Как быстрее всего генерировать видео с субтитрами на node.js + ffmpeg?

    @17th Автор вопроса
    Класс, не знал про такие кодеки, сейчас буду копать в этом направлении.

    Спасибо огромное за совет!
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай: надоела эта фигня, решил сразу сделать inject нужной библиотеки и контроллеров, объявив зависимость, а html внедрил как template. Устал бороться с этой чёртовой динамической загрузкой
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай: я решил напрямую указать зависимость от loginLayerApp и сразу его включать без доп. загрузки, загружать динамически только html с css.
    Оно вроде рендерится, но только один раз. Т.е. бизнес-логика не следит за изменениями и не перерисовывает view, только один раз, когда я явно указываю bootstrap
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    ozknemoy: таким образом не работает, выше описывал ситуацию. Да и грузить библиотеку bootstrap с кучей лишнего ради просто модального окна - все равно что забивать гвоздь лопатой.
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    ozknemoy: можно писать код в редакторе ниже для ответа на вопрос, а потом его вставлять в комментарии.
    Не очень понял, т.е. вы предлагаете перенести всю логику из контроллера в директиву?

    У меня сейчас есть отдельная страница регистрации, на которой подгружается модуль LoginLayerApp вместо с контроллером, несколькими директивами и сервисами.
    Как это все перенести в одну директиву? Возможно я путаюсь в терминах Angular и не совсем понимаю суть.
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай:
    // Подгружаю данные через сервис svc(к $http обращение внутри)
                    svc.getRegistrationLayer().success(function (data) {
    					// Подгружаю отдельно вручную таблицу стилей
                        var link = document.createElement('link');
                        link.rel = "stylesheet";
                        link.type = "text/css";
                        link.href = "/Content/css/layers/Login/loginRegistrationLayer.min.css";
                        // Добавляю таблицу стилей в head
                        document.head.appendChild(link);
    
                        // В место для всплывающего окна вставляю полученную data
                        $('#placeForLayer').append(data);
                        // Отображаю
                        $('#placeForLayer').parent().show();
                        // Компилирую
                        angular.bootstrap(document, ['loginLayerApp']);
                });


    Использовал смесь с чистым JS и ещё JQuery чтобы просто заставить это работать хотя бы.
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Как быть, если в этом модальном окне используется другой контроллер (со своими директивами, фильтрами и сервисами) ?
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай: попробовал подгрузить, все скомпилировалось, но не полностью. Я так понял проблема в том, что в страница с регистрацией написана под другой контролер loginLayerController, и вот он почему-то не вызывается.
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай: а как перед этим внедрить модуль в angular, если он входит в состав bundle, который генерирует asp.net?

    Сделать endpoint в серверном контроллере, который будет выдавать страничку вида
    @{
        Layout = null;
    }
    
    
    <!-- ANGULARJS -->
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-route.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-messages.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.min.js"></script>
    
    @Scripts.Render("~/bundles/js/layer/newLogin")
    
    <script src="https://www.google.com/recaptcha/api.js?onload=vcRecaptchaApiLoaded&render=explicit" async defer></script>


    Где loginLayerApp внедряется в angular

    (function () {
        var app = angular.module('loginLayerApp', ['ngMessages', 'ngAnimate', 'vcRecaptcha']);
    
        console.log("Hello there!");
    })();


    И после этого уже вызывать angular.bootstrap, верно?
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Николай: да, скорее всего так. Вот основная структура страницы с регистрацией:

    @using Inventum.ViewModels.Account
    @using Microsoft.Owin.Security
    
    @{
        Layout = null;
    }
    
    <link href="~/Content/css/layers/Login/loginRegistrationLayer.min.css" rel="stylesheet" />
    
    
    <div ng-app="loginLayerApp"
         ng-controller="loginLayerController as loginCtrl"
         ng-init="init(); returnUrl = '@ViewBag.ReturnUrl'; type = ('@ViewBag.Type' == '') ? 'login' : '@ViewBag.Type'; form={}; user={};"
         esc-key="closeLayer()"
         class="login-app-container"
         tabindex="0">
        <div class="container" ng-class="{'mobile': !desktop, 'desktop': desktop }" ng-switch on="type">
    
            <!-- =============== LOGIN =============== -->
            <div class="registration-container" ng-switch-when="login">
                {{loginCtrl.desktop}}
                {{desktop}}
                <h1>@Html.ClickZone("NewRegLogin.Login.Title")</h1>
                <div class="main-label">
                    <span>@Html.ClickZone("NewRegLogin.Login.HelpLabel")</span>
                    <br ng-show="phoneBreakpoint">
                </div>
    
                <!-- ======== Errors block ======== -->
              
                <!-- ======== Errors block ======== -->
    
                <div class="options">
    
    
                    <ng-form name="form.userForm" ng-class="{'showMe': nosocial && !desktop}" novalidate enter-key="trySubmit = true; submitForm(form.userForm.$valid, user)">
                        <!-- <form name="userForm" ng-submit="submitForm(userForm.$valid)" novalidate> -->
                        <div class="emailFocusHandler" ng-hide="desktop || nosocial" ng-click="nosocial = true;"></div>
                        <div class="group">
                            
                        </div>
    
    
                        <div ng-show="desktop || nosocial">
                            <div class="group">
    
                            </div>
    
                            <div class="help-buttons">
                                
                            </div>
    
                            <div class="error-block" ng-if="loginFailed && answerCode == ANSWERS.LOGIN.UserNoutFound">
                            </div>
    
                            <button type="submit" ng-click="trySubmit = true; submitForm(form.userForm.$valid, user)">@Html.ClickZone("NewRegLogin.SignIn") </button>
                        </div>
                    </ng-form>
    
                    <div class="delimeter" ng-show="desktop || nosocial"></div>
    
                </div>
            </div>
            <!-- =============== LOGIN =============== -->
           
    </div>
    
    
    @section scripts {
        <!-- ANGULARJS -->
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-route.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-messages.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.min.js"></script>
    
        @Scripts.Render("~/bundles/js/layer/newLogin")
    
        <script src="https://www.google.com/recaptcha/api.js?onload=vcRecaptchaApiLoaded&render=explicit" async defer></script>
    }
  • Как динамически подгрузить всплывающее окно в AngularJS?

    @17th Автор вопроса
    Указывал template вот здесь, при этом выдавал голый HTML.

    // Подгружаем страничку
    svc.getRegistrationLayer().success(function (data) {
        ngDialog.open({
            // Используем как template
            template: data,
            plain: true,
            className: 'ngdialog-theme-default'
        });
    });


    Хочу наиболее просто решить проблему. Через $compile запутался какая должна быть последовательность действий, напр.
    1.подгрузить банд с модулем
    2.выполнить его
    3.внедрить в angular
    4.загрузить страницу
    5.открыть всплывающее окошко
    6.перекомпилировать DOM.
  • Как исправить ошибку в dll-библиотеке WindowsBase фреймфорка Mono на Mac?

    @17th Автор вопроса
    Я проделал все вышеуказанные инструкции, но у меня остался еще один глупый вопрос: где теперь я могу найти собранный фреймворк или библиотеки?
  • Как исправить ошибку в dll-библиотеке WindowsBase фреймфорка Mono на Mac?

    @17th Автор вопроса
    dordzhiev: попробовал открыть в Xamarin Studio папку WindowsBase и построить, на что компилятор выдал несколько ошибок:

    Building Solution: WindowsBase (Debug)

    Building: WindowsBase (Debug)

    Build started 29.08.2015 1:58:06.
    __________________________________________________
    Project "/Users/dima/Downloads/mono-bee81085af07a3ef1f64c024924be63f7b0f344c/mcs/class/WindowsBase/WindowsBase.csproj" (Build target(s)):

    Target PrepareForBuild:
    Configuration: Debug Platform: AnyCPU

    Target ResolveAssemblyReferences:
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/Microsoft.Common.targets: warning : Reference 'zipsharp, Version=1.0.3223.25758, Culture=neutral' not resolved
    For searchpath {CandidateAssemblyFiles}
    Warning: {CandidateAssemblyFiles} not supported currently
    For searchpath {HintPathFromItem}
    HintPath attribute not found
    For searchpath {TargetFrameworkDirectory}
    Considered target framework dir /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5, assembly named 'zipsharp' not found.
    Considered target framework dir /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/Facades/, assembly named 'zipsharp' not found.
    For searchpath {PkgConfig}
    Considered zipsharp, Version=1.0.3223.25758, Culture=neutral, but could not find in any pkg-config files.
    For searchpath {GAC}
    Considered zipsharp, Version=1.0.3223.25758, Culture=neutral, but could not find in the GAC.
    For searchpath {RawFileName}
    For searchpath bin/Debug/

    Target GenerateSatelliteAssemblies:
    No input files were specified for target GenerateSatelliteAssemblies, skipping.

    Target GenerateTargetFrameworkMonikerAttribute:
    Skipping target "GenerateTargetFrameworkMonikerAttribute" because its outputs are up-to-date.

    Target CoreCompile:
    Tool /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/mcs.exe execution started with arguments: /noconfig /debug:full /debug+ /optimize- /out:obj/Debug/WindowsBase.dll Assembly/AssemblyInfo.cs System.Windows.Threading/Dispatcher.cs System.Windows.Threading/DispatcherEventArgs.cs System.Windows.Threading/DispatcherFrame.cs System.Windows.Threading/DispatcherHookEventArgs.cs System.Windows.Threading/DispatcherHookEventHandler.cs System.Windows.Threading/DispatcherHooks.cs System.Windows.Threading/DispatcherObject.cs System.Windows.Threading/DispatcherOperation.cs System.Windows.Threading/DispatcherOperationCallback.cs System.Windows.Threading/DispatcherOperationStatus.cs System.Windows.Threading/DispatcherPriority.cs System.Windows.Threading/DispatcherProcessingDisabled.cs System.Windows.Threading/DispatcherSynchronizationContext.cs System.Windows.Threading/DispatcherTimer.cs System.Windows.Threading/DispatcherUnhandledExceptionEventArgs.cs System.Windows.Threading/DispatcherUnhandledExceptionEventHandler.cs System.Windows.Threading/DispatcherUnhandledExceptionFilterEventArgs.cs System.Windows.Threading/DispatcherUnhandledExceptionFilterEventHandler.cs System.Windows.Media.Converters/MatrixValueSerializer.cs System.IO.Packaging/CertificateEmbeddingOption.cs System.IO.Packaging/CompressionOption.cs System.IO.Packaging/EncryptedPackageEnvelope.cs System.IO.Packaging/EncryptionOption.cs System.IO.Packaging/InvalidSignatureEventHandler.cs System.IO.Packaging/Package.cs System.IO.Packaging/PackageDigitalSignature.cs System.IO.Packaging/PackageDigitalSignatureManager.cs System.IO.Packaging/PackagePart.cs System.IO.Packaging/PackagePartCollection.cs System.IO.Packaging/PackageProperties.cs System.IO.Packaging/PackageRelationship.cs System.IO.Packaging/PackageRelationshipCollection.cs System.IO.Packaging/PackageRelationshipSelector.cs System.IO.Packaging/PackageRelationshipSelectorType.cs System.IO.Packaging/PackUriHelper.cs System.IO.Packaging/RightsManagementInformation.cs System.IO.Packaging/SignatureVerificationEventArgs.cs System.IO.Packaging/StorageInfo.cs System.IO.Packaging/StreamInfo.cs System.IO.Packaging/TargetMode.cs System.IO.Packaging/VerifyResult.cs System.IO.Packaging/ZipPackage.cs System.IO.Packaging/ZipPackagePart.cs System.IO/FileFormatException.cs System.Diagnostics/PresentationTraceLevel.cs System.Diagnostics/PresentationTraceSources.cs System.Collections.ObjectModel/ObservableCollection.cs System.Collections.ObjectModel/ReadOnlyObservableCollection.cs System.Collections.Specialized/CollectionChangedEventManager.cs System.Collections.Specialized/INotifyCollectionChanged.cs System.Collections.Specialized/NotifyCollectionChangedAction.cs System.Collections.Specialized/NotifyCollectionChangedEventArgs.cs System.Collections.Specialized/NotifyCollectionChangedEventHandler.cs System.ComponentModel/CurrentChangedEventManager.cs System.ComponentModel/CurrentChangingEventArgs.cs System.ComponentModel/CurrentChangingEventHandler.cs System.ComponentModel/CurrentChangingEventManager.cs System.ComponentModel/DependencyPropertyDescriptor.cs System.ComponentModel/GroupDescription.cs System.ComponentModel/ICollectionView.cs System.ComponentModel/ICollectionViewFactory.cs System.ComponentModel/PropertyChangedEventManager.cs System.ComponentModel/PropertyFilterAttribute.cs System.ComponentModel/PropertyFilterOptions.cs System.ComponentModel/SortDescription.cs System.ComponentModel/SortDescriptionCollection.cs System.Security.Permissions/MediaPermission.cs System.Security.Permissions/MediaPermissionAttribute.cs System.Security.Permissions/MediaPermissionAudio.cs System.Security.Permissions/MediaPermissionImage.cs System.Security.Permissions/MediaPermissionVideo.cs System.Security.Permissions/WebBrowserPermission.cs System.Security.Permissions/WebBrowserPermissionAttribute.cs System.Security.Permissions/WebBrowserPermissionLevel.cs System.Security.RightsManagement/AuthenticationType.cs System.Security.RightsManagement/ContentGrant.cs System.Security.RightsManagement/ContentRight.cs System.Security.RightsManagement/ContentUser.cs System.Security.RightsManagement/CryptoProvider.cs System.Security.RightsManagement/LocalizedNameDescriptionPair.cs System.Security.RightsManagement/PublishLicense.cs System.Security.RightsManagement/RightsManagementException.cs System.Security.RightsManagement/RightsManagementFailureCode.cs System.Security.RightsManagement/SecureEnvironment.cs System.Security.RightsManagement/UnsignedPublishLicense.cs System.Security.RightsManagement/UseLicense.cs System.Security.RightsManagement/UserActivationMode.cs System.Windows/AttachedPropertyBrowsableAttribute.cs System.Windows/AttachedPropertyBrowsableForTypeAttribute.cs System.Windows/AttachedPropertyBrowsableWhenAttributePresentAttribute.cs System.Windows/CoerceValueCallback.cs System.Windows/DependencyObject.cs System.Windows/DependencyObjectType.cs System.Windows/DependencyProperty.cs System.Windows/DependencyPropertyChangedEventArgs.cs System.Windows/DependencyPropertyChangedEventHandler.cs System.Windows/DependencyPropertyKey.cs System.Windows/Expression.cs System.Windows/ExpressionConverter.cs System.Windows/Freezable.cs System.Windows/Int32Rect.cs System.Windows/Int32RectConverter.cs System.Windows/IWeakEventListener.cs System.Windows/LocalValueEntry.cs System.Windows/LocalValueEnumerator.cs System.Windows/Point.cs System.Windows/PointConverter.cs System.Windows/PropertyChangedCallback.cs System.Windows/PropertyMetadata.cs System.Windows/Rect.cs System.Windows/RectConverter.cs System.Windows/Size.cs System.Windows/SizeConverter.cs System.Windows/ValidateValueCallback.cs System.Windows/Vector.cs System.Windows/VectorConverter.cs System.Windows/WeakEventManager.cs System.Windows.Converters/Int32RectValueSerializer.cs System.Windows.Converters/PointValueSerializer.cs System.Windows.Converters/RectValueSerializer.cs System.Windows.Converters/SizeValueSerializer.cs System.Windows.Converters/VectorValueSerializer.cs System.Windows.Data/DataSourceProvider.cs System.Windows.Input/FocusNavigationDirection.cs System.Windows.Input/Key.cs System.Windows.Input/KeyConverter.cs System.Windows.Input/KeyInterop.cs System.Windows.Input/KeyValueSerializer.cs System.Windows.Input/ModifierKeys.cs System.Windows.Input/ModifierKeysConverter.cs System.Windows.Input/ModifierKeysValueSerializer.cs System.Windows.Input/TraversalRequest.cs System.Windows.Interop/ComponentDispatcher.cs System.Windows.Interop/IKeyboardInputSink.cs System.Windows.Interop/IKeyboardInputSite.cs System.Windows.Interop/MSG.cs System.Windows.Interop/ThreadMessageEventHandler.cs System.Windows.Markup/ConstructorArgumentAttribute.cs System.Windows.Markup/ContentPropertyAttribute.cs System.Windows.Markup/ContentWrapperAttribute.cs System.Windows.Markup/DateTimeValueSerializer.cs System.Windows.Markup/DependsOnAttribute.cs System.Windows.Markup/DesignerSerializationOptions.cs System.Windows.Markup/DesignerSerializationOptionsAttribute.cs System.Windows.Markup/IComponentConnector.cs System.Windows.Markup/INameScope.cs System.Windows.Markup/InternalTypeHelper.cs System.Windows.Markup/IValueSerializerContext.cs System.Windows.Markup/IXamlTypeResolver.cs System.Windows.Markup/MarkupExtension.cs System.Windows.Markup/MarkupExtensionReturnTypeAttribute.cs System.Windows.Markup/RootNamespaceAttribute.cs System.Windows.Markup/RuntimeNamePropertyAttribute.cs System.Windows.Markup/ServiceProviders.cs System.Windows.Markup/TrimSurroundingWhitespaceAttribute.cs System.Windows.Markup/ValueSerializer.cs System.Windows.Markup/ValueSerializerAttribute.cs System.Windows.Markup/WhitespaceSignificantCollectionAttribute.cs System.Windows.Markup/XmlLangPropertyAttribute.cs System.Windows.Markup/XmlnsCompatibleWithAttribute.cs System.Windows.Markup/XmlnsDefinitionAttribute.cs System.Windows.Markup/XmlnsPrefixAttribute.cs System.Windows.Markup.Primitives/MarkupObject.cs System.Windows.Markup.Primitives/MarkupProperty.cs System.Windows.Media/DisableDpiAwarenessAttribute.cs System.Windows.Media/Matrix.cs System.Windows.Media/MatrixConverter.cs ../../build/common/MonoTODOAttribute.cs ../../build/common/Consts.cs Test/System.IO.Packaging/FakePackage.cs Test/System.IO.Packaging/FakeStream.cs Test/System.IO.Packaging/PackagePartTest.cs Test/System.IO.Packaging/PackageRelationshipTests.cs Test/System.IO.Packaging/PackageTest.cs Test/System.IO.Packaging/TestBase.cs System.IO.Packaging/Check.cs Test/System.IO.Packaging/FakePackagePart.cs Test/System.IO.Packaging/FakePackagePartTests.cs Test/System.IO.Packaging/FakePackageTests.cs Test/System.IO.Packaging/PackagePartStreamTests.cs System.IO.Packaging/ZipPartStream.cs Test/System.Collections.ObjectModel/ObservableCollectionTest.cs Test/System.Windows/DependencyObjectTest.cs Test/System.Windows/DependencyObjectTypeTest.cs Test/System.Windows/DependencyPropertyTest.cs Test/System.Windows/FreezableTest.cs Test/System.Windows/Int32RectConverterTest.cs Test/System.Windows/Int32RectTest.cs Test/System.Windows/PointConverterTest.cs Test/System.Windows/PointTest.cs Test/System.Windows/PropertyMetadataTest.cs Test/System.Windows/RectConverterTest.cs Test/System.Windows/RectTest.cs Test/System.Windows/SizeConverterTest.cs Test/System.Windows/SizeTest.cs Test/System.Windows/VectorConverterTest.cs Test/System.Windows/VectorTest.cs ZipSharp/IOFunctions.cs ZipSharp/NativeUnzip.cs ZipSharp/NativeZip.cs ZipSharp/UnzipArchive.cs ZipSharp/UnzipFileInfo.cs ZipSharp/UnzipHandle.cs ZipSharp/UnzipReadStream.cs ZipSharp/ZipArchive.cs ZipSharp/ZipFileInfo.cs ZipSharp/ZipHandle.cs ZipSharp/ZipStream.cs ZipSharp/ZipTime.cs ZipSharp/ZipWriteStream.cs System.IO.Packaging/PackagePropertiesPart.cs Test/System.Collections.Specialized/CollectionChangedEventValidators.cs Test/System.Collections.Specialized/NotifyCollectionChangedEventArgsTest.cs Test/System.Collections.ObjectModel/ReadOnlyObservableCollectionTest.cs Test/System.Windows.Markup/ConstructorArgumentAttributeTest.cs Test/System.Windows.Markup/ContentPropertyAttributeTest.cs Test/System.Windows.Markup/ContentWrapperAttributeTest.cs Test/System.Windows.Markup/DateTimeValueSerializerTest.cs Test/System.Windows.Markup/DependsOnAttributeTest.cs Test/System.Windows.Markup/MarkupExtensionReturnTypeAttributeTest.cs Test/System.Windows.Markup/ValueSerializerTest.cs Test/System.IO.Packaging/PackUriHelperTests.cs Test/System.IO.Packaging/PackagePartFileTests.cs /target:library /unsafe+ /define:"DEBUG;NET_3_0" /nostdlib /reference:/Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll /reference:/Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.Xml.dll /reference:packages/NUnit.2.6.4/lib/nunit.framework.dll /reference:/Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.Core.dll /reference:/Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/mscorlib.dll /warn:4
    Assembly/AssemblyInfo.cs(52,12): warning CS1699: Use compiler option `delaysign' or appropriate project settings instead of `AssemblyDelaySign' attribute
    Assembly/AssemblyInfo.cs(53,12): warning CS1699: Use compiler option `keyfile' or appropriate project settings instead of `AssemblyKeyFile' attribute
    System.Collections.ObjectModel/ObservableCollection.cs(44,56): warning CS0436: The type `System.Collections.Specialized.INotifyCollectionChanged' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.Specialized/INotifyCollectionChanged.cs(38,19): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(235,50): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.Collections.Specialized/INotifyCollectionChanged.cs(40,9): warning CS0436: The type `System.Collections.Specialized.NotifyCollectionChangedEventHandler' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.Specialized/NotifyCollectionChangedEventHandler.cs(38,23): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.Collections.ObjectModel/ObservableCollection.cs(153,47): warning CS0436: The type `System.Collections.Specialized.NotifyCollectionChangedEventArgs' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.Specialized/NotifyCollectionChangedEventArgs.cs(36,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.Collections.ObjectModel/ReadOnlyObservableCollection.cs(41,39): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.Collections.Specialized/NotifyCollectionChangedEventArgs.cs(37,11): warning CS0436: The type `System.Collections.Specialized.NotifyCollectionChangedAction' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.Specialized/NotifyCollectionChangedAction.cs(38,14): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.ComponentModel/GroupDescription.cs(34,12): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.ComponentModel/GroupDescription.cs(41,10): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.ComponentModel/ICollectionView.cs(43,3): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.ComponentModel/ICollectionView.cs(44,3): warning CS0436: The type `System.Collections.ObjectModel.ReadOnlyObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ReadOnlyObservableCollection.cs(39,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.IO.Packaging/PackageDigitalSignature.cs(94,4): warning CS0618: `System.Security.SecurityTreatAsSafeAttribute' is obsolete: `Use the SecuritySafeCriticalAttribute instead'
    System.IO.Packaging/PackageProperties.cs(92,25): warning CS0219: The variable `rel' is assigned but its value is never used
    System.IO.Packaging/PackUriHelper.cs(41,28): error CS0246: The type or namespace name `PackUriParser' could not be found. Are you missing an assembly reference?
    System.ComponentModel/GroupDescription.cs(38,21): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    System.Security.RightsManagement/ContentGrant.cs(31,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/ContentUser.cs(31,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/CryptoProvider.cs(32,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/LocalizedNameDescriptionPair.cs(31,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/PublishLicense.cs(31,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/SecureEnvironment.cs(32,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/UnsignedPublishLicense.cs(32,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    System.Security.RightsManagement/UseLicense.cs(32,43): warning CS0612: `System.Security.SecurityCriticalScope' is obsolete
    Test/System.IO.Packaging/FakeStream.cs(33,21): warning CS3005: Identifier `System.IO.Packaging.Tests.FakeStream.canRead' differing only in case is not CLS-compliant
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous warning)
    Test/System.IO.Packaging/FakeStream.cs(34,21): warning CS3005: Identifier `System.IO.Packaging.Tests.FakeStream.canSeek' differing only in case is not CLS-compliant
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous warning)
    Test/System.IO.Packaging/FakeStream.cs(35,21): warning CS3005: Identifier `System.IO.Packaging.Tests.FakeStream.canWrite' differing only in case is not CLS-compliant
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(49,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(49,40): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(67,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(67,40): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(86,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(86,40): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(108,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(108,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(134,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(134,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(164,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(164,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(193,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(193,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(298,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ObservableCollectionTest.cs(298,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ReadOnlyObservableCollectionTest.cs(45,4): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ReadOnlyObservableCollectionTest.cs(45,48): warning CS0436: The type `System.Collections.ObjectModel.ObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ObservableCollection.cs(44,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ReadOnlyObservableCollectionTest.cs(46,4): warning CS0436: The type `System.Collections.ObjectModel.ReadOnlyObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ReadOnlyObservableCollection.cs(39,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Test/System.Collections.ObjectModel/ReadOnlyObservableCollectionTest.cs(46,64): warning CS0436: The type `System.Collections.ObjectModel.ReadOnlyObservableCollection' conflicts with the imported type of same name'. Ignoring the imported type definition
    System.Collections.ObjectModel/ReadOnlyObservableCollection.cs(39,15): (Location of the symbol related to previous warning)
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/System.dll (Location of the symbol related to previous warning)
    Task "Csc" execution -- FAILED
    Done building target "CoreCompile" in project "/Users/dima/Downloads/mono-bee81085af07a3ef1f64c024924be63f7b0f344c/mcs/class/WindowsBase/WindowsBase.csproj".-- FAILED

    Done building project "/Users/dima/Downloads/mono-bee81085af07a3ef1f64c024924be63f7b0f344c/mcs/class/WindowsBase/WindowsBase.csproj".-- FAILED

    Build FAILED.

    Warnings:

    /Users/dima/Downloads/mono-bee81085af07a3ef1f64c024924be63f7b0f344c/mcs/class/WindowsBase/WindowsBase.csproj (Build) ->
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/Microsoft.Common.targets (ResolveAssemblyReferences target) ->

    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/Microsoft.Common.targets: warning : Reference 'zipsharp, Version=1.0.3223.25758, Culture=neutral' not resolved

    /Users/dima/Downloads/mono-bee81085af07a3ef1f64c024924be63f7b0f344c/mcs/class/WindowsBase/WindowsBase.csproj (Build) ->
    /Library/Frameworks/Mono.framework/Versions/4.0.4/lib/mono/4.5/Microsoft.CSharp.targets (CoreCompile target) ->

    Assembly/AssemblyInfo.cs(52,12): warning CS1699: Use compiler option `delaysign' or appropriate project settings instead of `AssemblyDelaySign' attribute
    Assembly/AssemblyInfo.cs(53,12): warning CS1699: Use compiler option `keyfile' or appropriate project settings instead of `AssemblyKeyFile' attribute

    --------------------- Готово ---------------------

    Построение: 1 ошибка, 47 предупреждений