简体   繁体   English

C#-Microsoft Expression Encoder缺少参考,如何将它们添加到项目中?

[英]C# - Microsoft Expression Encoder missing reference, how to add them to project?

I have an application that has an Image Capture feature. 我有一个具有图像捕获功能的应用程序。

When I try to build it in Visual Studio 2012, I get missing references to Expression Encoder. 当我尝试在Visual Studio 2012中构建它时,缺少对Expression Encoder的引用。 The image capture facility has been achieved using Microsoft Expression Encoder, and it uses code from it's API. 图像捕获功能已使用Microsoft Expression Encoder实现,并且使用了其API中的代码。 In order to build this application successfully, the PC where I'm trying to build needs some sort of Expression Encoder codec where it will get the references from. 为了成功构建此应用程序,我要构建的PC需要某种Expression Encoder编解码器,它将从中获取引用。

I have tried installing the full application (Microsoft Expression Encoder 4) which is about 25MB, which fixes all the references. 我尝试安装完整的应用程序(Microsoft Expression Encoder 4),该应用程序约为25MB,可修复所有引用。 We do not want that, due to the application being offered to clients, which means they will have to install another application, the Expression Encoder 4 on top of our application. 我们不希望这样,因为该应用程序是提供给客户端的,这意味着他们将不得不在我们的应用程序之上安装另一个应用程序,即Expression Encoder 4。 I'm thinking that there must be a codec of some sort that contains these missing references which is of course smaller than 25MB. 我认为必须有某种包含这些缺少的引用的编解码器,它当然小于25MB。

The missing references are the following: 缺少的参考如下:

Microsoft.Expression.Encoder.Devices; Microsoft.Expression.Encoder.Devices; Microsoft.Expression.Encoder.Live; Microsoft.Expression.Encoder.Live; LiveJob LiveDeviceSource EncoderDevices EncoderDeviceType EncoderDevice Source Properties Preview Window LiveJob LiveDeviceSource EncoderDevices EncoderDeviceType EncoderDevice源属性预览窗口

Does anyone have more experience with this and knows how to fix the missing references? 是否有人对此有更多经验,并且知道如何解决丢失的参考文献?

Thank you very much. 非常感谢你。

This is not possible to deploy an application that uses EE4 SDK without installing the entire application on the target machine. 如果未在目标计算机上安装整个应用程序,则无法部署使用EE4 SDK的应用程序。 Things had to change from EE3 to EE4 but it does not. 事情必须从EE3更改为EE4,但事实并非如此。 Even if you try to "copy local" DLLs in your application location, it requires to install the 25MB EE4 application. 即使您尝试在应用程序位置“复制本地” DLL,也需要安装25MB EE4应用程序。

Hope this helps. 希望这可以帮助。

Add reference to 添加参考

microsoft.expression.encoder.dll microsoft.expression.encoder.dll

Check in C:\\Program Files (x86)\\Microsoft SDKs\\Expression\\Encorder 4 检入C:\\ Program Files(x86)\\ Microsoft SDKs \\ Expression \\ Encorder 4

If possible copy the dll into your project and change the property Copy To Output to Copy Always. 如果可能,将dll复制到您的项目中,并将属性“复制到输出”更改为“始终复制”。

Here's an article that shows workarounds for missing Microsoft.Expression.Encoder.resources.dll file, I was able to get through all exceptions using it, but got stuck on 'Appliation not licensed. 这是一篇显示缺少Microsoft.Expression.Encoder.resources.dll文件的变通办法的文章,我能够使用它解决所有异常,但遇到了“未获得许可的应用程序”的问题。 To fix, install and run application.' 修复,安装和运行应用程序。” Link to article: http://uprightbassics.blogspot.com/2014/01/how-to-deploy-expression-encoder-4-sdk.html 链接到文章: http : //uprightbassics.blogspot.com/2014/01/how-to-deploy-expression-encoder-4-sdk.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用Microsoft Expression Encoder和一系列位图在C#中生成视频 - Generate Video in C# using Microsoft Expression Encoder and a series of bitmaps 在C#中添加对项目的引用 - Add reference to project in c# 从命令行通过Microsoft.Expression.Encoder运行Selenium Webdriver C#测试 - Running selenium webdriver C# test with Microsoft.Expression.Encoder from command line Microsoft.Expression.Encoder.MediaItem的可靠性如何? - How Reliable is Microsoft.Expression.Encoder.MediaItem? 当我在 Visual Studio C# 中使用 Microsoft.Expression.Encoder 时出现错误 - when i am using Microsoft.Expression.Encoder in visual studio c# I am Getting error 是否可以在C#MVC3项目中添加对Microsoft Office DLL的引用? - Is it possible to add a reference to the Microsoft Office DLL's in a C# MVC3 project? C#添加缺少STS参考 - C# Add STS Reference Missing 如何添加对 Azure Function C# 项目的引用? - How to add a reference to an Azure Function C# project? c#如何从源代码添加引用到我的项目 - c# How to add a reference from source code to my project C#-如何向我的项目添加SOAP Web服务引用? - C# - How to add a SOAP web service reference to my project?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM