mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
Package all known GStreamer plugins and dependencies on Windows, and load them explicitly when loading Servo.
This commit is contained in:
parent
5f477707a1
commit
4fb75f5646
4 changed files with 1177 additions and 162 deletions
|
@ -122,8 +122,54 @@ pub use servo_url as url;
|
||||||
target_arch = "x86_64"
|
target_arch = "x86_64"
|
||||||
))]
|
))]
|
||||||
mod media_platform {
|
mod media_platform {
|
||||||
pub use self::servo_media_gstreamer::GStreamerBackend as MediaBackend;
|
use super::ServoMedia;
|
||||||
use servo_media_gstreamer;
|
use servo_media_gstreamer::GStreamerBackend;
|
||||||
|
|
||||||
|
#[cfg(windows)]
|
||||||
|
pub fn init() {
|
||||||
|
let mut plugin_dir = std::env::current_exe().unwrap();
|
||||||
|
plugin_dir.pop();
|
||||||
|
|
||||||
|
let plugins = &[
|
||||||
|
"gstapp.dll",
|
||||||
|
"gstaudioconvert.dll",
|
||||||
|
"gstaudiofx.dll",
|
||||||
|
"gstaudioparsers.dll",
|
||||||
|
"gstaudioresample.dll",
|
||||||
|
"gstautodetect.dll",
|
||||||
|
"gstcoreelements.dll",
|
||||||
|
"gstdeinterlace.dll",
|
||||||
|
"gstplayback.dll",
|
||||||
|
"gstinterleave.dll",
|
||||||
|
"gstisomp4.dll",
|
||||||
|
"gstlibav.dll",
|
||||||
|
"gstnice.dll",
|
||||||
|
"gstogg.dll",
|
||||||
|
"gstopengl.dll",
|
||||||
|
"gstopus.dll",
|
||||||
|
"gstproxy.dll",
|
||||||
|
"gstrtp.dll",
|
||||||
|
"gsttheora.dll",
|
||||||
|
"gsttypefindfunctions.dll",
|
||||||
|
"gstvideoconvert.dll",
|
||||||
|
"gstvideoparsersbad.dll",
|
||||||
|
"gstvideoscale.dll",
|
||||||
|
"gstvolume.dll",
|
||||||
|
"gstvorbis.dll",
|
||||||
|
"gstvpx.dll",
|
||||||
|
"gstwasapi.dll",
|
||||||
|
"gstwebrtc.dll",
|
||||||
|
];
|
||||||
|
|
||||||
|
let backend = GStreamerBackend::init_with_plugins(plugin_dir, plugins)
|
||||||
|
.expect("Error initializing GStreamer");
|
||||||
|
ServoMedia::init_with_backend(backend);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
|
pub fn init() {
|
||||||
|
ServoMedia::init::<GStreamerBackend>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(
|
#[cfg(not(any(
|
||||||
|
@ -131,12 +177,12 @@ mod media_platform {
|
||||||
target_arch = "x86_64"
|
target_arch = "x86_64"
|
||||||
)))]
|
)))]
|
||||||
mod media_platform {
|
mod media_platform {
|
||||||
pub use self::servo_media_dummy::DummyBackend as MediaBackend;
|
use super::ServoMedia;
|
||||||
use servo_media_dummy;
|
pub fn init() {
|
||||||
|
ServoMedia::init::<servo_media_dummy::DummyBackend>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type MediaBackend = media_platform::MediaBackend;
|
|
||||||
|
|
||||||
/// The in-process interface to Servo.
|
/// The in-process interface to Servo.
|
||||||
///
|
///
|
||||||
/// It does everything necessary to render the web, primarily
|
/// It does everything necessary to render the web, primarily
|
||||||
|
@ -204,7 +250,7 @@ where
|
||||||
let opts = opts::get();
|
let opts = opts::get();
|
||||||
|
|
||||||
if !opts.multiprocess {
|
if !opts.multiprocess {
|
||||||
ServoMedia::init::<MediaBackend>();
|
media_platform::init();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure the gl context is made current.
|
// Make sure the gl context is made current.
|
||||||
|
@ -810,7 +856,7 @@ pub fn run_content_process(token: String) {
|
||||||
script::init();
|
script::init();
|
||||||
script::init_service_workers(sw_senders);
|
script::init_service_workers(sw_senders);
|
||||||
|
|
||||||
ServoMedia::init::<MediaBackend>();
|
media_platform::init();
|
||||||
|
|
||||||
unprivileged_content.start_all::<script_layout_interface::message::Msg,
|
unprivileged_content.start_all::<script_layout_interface::message::Msg,
|
||||||
layout_thread::LayoutThread,
|
layout_thread::LayoutThread,
|
||||||
|
|
|
@ -664,50 +664,122 @@ def package_gstreamer_dlls(servo_exe_dir, target):
|
||||||
gst_root = ""
|
gst_root = ""
|
||||||
gst_default_path = path.join("C:\\gstreamer\\1.0", gst_x64)
|
gst_default_path = path.join("C:\\gstreamer\\1.0", gst_x64)
|
||||||
gst_env = "GSTREAMER_1_0_ROOT_" + gst_x64
|
gst_env = "GSTREAMER_1_0_ROOT_" + gst_x64
|
||||||
if os.path.exists(path.join(gst_default_path, "bin", "libffi-7.dll")) or \
|
if os.environ.get(gst_env) is not None:
|
||||||
os.path.exists(path.join(gst_default_path, "bin", "ffi-7.dll")):
|
|
||||||
gst_root = gst_default_path
|
|
||||||
elif os.environ.get(gst_env) is not None:
|
|
||||||
gst_root = os.environ.get(gst_env)
|
gst_root = os.environ.get(gst_env)
|
||||||
|
elif os.path.exists(path.join(gst_default_path, "bin", "ffi-7.dll")):
|
||||||
|
gst_root = gst_default_path
|
||||||
else:
|
else:
|
||||||
print("Could not found GStreamer installation directory.")
|
print("Could not find GStreamer installation directory.")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
# All the shared libraries required for starting up and loading plugins.
|
||||||
gst_dlls = [
|
gst_dlls = [
|
||||||
["libffi-7.dll", "ffi-7.dll"],
|
"avfilter-7.dll",
|
||||||
["libgio-2.0-0.dll", "gio-2.0-0.dll"],
|
"avformat-58.dll",
|
||||||
["libglib-2.0-0.dll", "glib-2.0-0.dll"],
|
"avcodec-58.dll",
|
||||||
["libgmodule-2.0-0.dll", "gmodule-2.0-0.dll"],
|
"avutil-56.dll",
|
||||||
["libgobject-2.0-0.dll", "gobject-2.0-0.dll"],
|
"bz2.dll",
|
||||||
["libgstapp-1.0-0.dll", "gstapp-1.0-0.dll"],
|
"ffi-7.dll",
|
||||||
["libgstaudio-1.0-0.dll", "gstaudio-1.0-0.dll"],
|
"gio-2.0-0.dll",
|
||||||
["libgstbase-1.0-0.dll", "gstbase-1.0-0.dll"],
|
"glib-2.0-0.dll",
|
||||||
["libgstgl-1.0-0.dll", "gstgl-1.0-0.dll"],
|
"gmodule-2.0-0.dll",
|
||||||
["libgstpbutils-1.0-0.dll", "gstpbutils-1.0-0.dll"],
|
"gobject-2.0-0.dll",
|
||||||
["libgstplayer-1.0-0.dll", "gstplayer-1.0-0.dll"],
|
"graphene-1.0-0.dll",
|
||||||
["libgstreamer-1.0-0.dll", "gstreamer-1.0-0.dll"],
|
"gstapp-1.0-0.dll",
|
||||||
["libgstrtp-1.0-0.dll", "gstrtp-1.0-0.dll"],
|
"gstaudio-1.0-0.dll",
|
||||||
["libgstsdp-1.0-0.dll", "gstsdp-1.0-0.dll"],
|
"gstbase-1.0-0.dll",
|
||||||
["libgsttag-1.0-0.dll", "gsttag-1.0-0.dll"],
|
"gstcodecparsers-1.0-0.dll",
|
||||||
["libgstvideo-1.0-0.dll", "gstvideo-1.0-0.dll"],
|
"gstcontroller-1.0-0.dll",
|
||||||
["libgstwebrtc-1.0-0.dll", "gstwebrtc-1.0-0.dll"],
|
"gstfft-1.0-0.dll",
|
||||||
["libintl-8.dll", "intl-8.dll"],
|
"gstgl-1.0-0.dll",
|
||||||
["liborc-0.4-0.dll", "orc-0.4-0.dll"],
|
"gstpbutils-1.0-0.dll",
|
||||||
["libwinpthread-1.dll", "winpthread-1.dll"],
|
"gstplayer-1.0-0.dll",
|
||||||
["libz.dll", "libz-1.dll", "z-1.dll"]
|
"gstreamer-1.0-0.dll",
|
||||||
|
"gstriff-1.0-0.dll",
|
||||||
|
"gstrtp-1.0-0.dll",
|
||||||
|
"gstsctp-1.0-0.dll",
|
||||||
|
"gstsdp-1.0-0.dll",
|
||||||
|
"gsttag-1.0-0.dll",
|
||||||
|
"gstvideo-1.0-0.dll",
|
||||||
|
"gstwebrtc-1.0-0.dll",
|
||||||
|
"intl-8.dll",
|
||||||
|
"libgmp-10.dll",
|
||||||
|
"libgnutls-30.dll",
|
||||||
|
"libhogweed-4.dll",
|
||||||
|
"libjpeg-8.dll",
|
||||||
|
"libnettle-6.dll.",
|
||||||
|
"libpng16-16.dll",
|
||||||
|
"libogg-0.dll",
|
||||||
|
"libopus-0.dll",
|
||||||
|
"libtasn1-6.dll",
|
||||||
|
"libtheora-0.dll",
|
||||||
|
"libtheoradec-1.dll",
|
||||||
|
"libtheoraenc-1.dll",
|
||||||
|
"libvorbis-0.dll",
|
||||||
|
"libvorbisenc-2.dll",
|
||||||
|
"libwinpthread-1.dll",
|
||||||
|
"nice-10.dll",
|
||||||
|
"orc-0.4-0.dll",
|
||||||
|
"swresample-3.dll",
|
||||||
|
"z-1.dll",
|
||||||
]
|
]
|
||||||
|
|
||||||
missing = []
|
missing = []
|
||||||
for gst_lib in gst_dlls:
|
for gst_lib in gst_dlls:
|
||||||
if isinstance(gst_lib, str):
|
try:
|
||||||
gst_lib = [gst_lib]
|
shutil.copy(path.join(gst_root, "bin", gst_lib), servo_exe_dir)
|
||||||
for lib in gst_lib:
|
except:
|
||||||
try:
|
missing += [str(gst_lib)]
|
||||||
shutil.copy(path.join(gst_root, "bin", lib), servo_exe_dir)
|
|
||||||
break
|
for gst_lib in missing:
|
||||||
except:
|
print("ERROR: could not find required GStreamer DLL: " + gst_lib)
|
||||||
pass
|
if missing:
|
||||||
else:
|
return False
|
||||||
|
|
||||||
|
# Only copy a subset of the available plugins.
|
||||||
|
gst_dlls = [
|
||||||
|
"gstapp.dll",
|
||||||
|
"gstaudioconvert.dll",
|
||||||
|
"gstaudiofx.dll",
|
||||||
|
"gstaudioparsers.dll",
|
||||||
|
"gstaudioresample.dll",
|
||||||
|
"gstautodetect.dll",
|
||||||
|
"gstcoreelements.dll",
|
||||||
|
"gstdeinterlace.dll",
|
||||||
|
"gstplayback.dll",
|
||||||
|
"gstinterleave.dll",
|
||||||
|
"gstisomp4.dll",
|
||||||
|
"gstnice.dll",
|
||||||
|
"gstogg.dll",
|
||||||
|
"gstopengl.dll",
|
||||||
|
"gstopus.dll",
|
||||||
|
"gstproxy.dll",
|
||||||
|
"gstrtp.dll",
|
||||||
|
"gsttheora.dll",
|
||||||
|
"gsttypefindfunctions.dll",
|
||||||
|
"gstvideoconvert.dll",
|
||||||
|
"gstvideofilter.dll",
|
||||||
|
"gstvideoparsersbad.dll",
|
||||||
|
"gstvideoscale.dll",
|
||||||
|
"gstvolume.dll",
|
||||||
|
"gstvorbis.dll",
|
||||||
|
"gstvpx.dll",
|
||||||
|
"gstwebrtc.dll",
|
||||||
|
"gstwasapi.dll",
|
||||||
|
"gstlibav.dll",
|
||||||
|
]
|
||||||
|
|
||||||
|
gst_plugin_path_root = os.environ.get("GSTREAMER_PACKAGE_PLUGIN_PATH") or gst_root
|
||||||
|
gst_plugin_path = path.join(gst_plugin_path_root, "lib", "gstreamer-1.0")
|
||||||
|
if not os.path.exists(gst_plugin_path):
|
||||||
|
print("ERROR: couldn't find gstreamer plugins at " + gst_plugin_path)
|
||||||
|
return False
|
||||||
|
|
||||||
|
missing = []
|
||||||
|
for gst_lib in gst_dlls:
|
||||||
|
try:
|
||||||
|
shutil.copy(path.join(gst_plugin_path, gst_lib), servo_exe_dir)
|
||||||
|
except:
|
||||||
missing += [str(gst_lib)]
|
missing += [str(gst_lib)]
|
||||||
|
|
||||||
for gst_lib in missing:
|
for gst_lib in missing:
|
||||||
|
|
|
@ -154,145 +154,451 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="..\..\target\debug\api-ms-win-crt-runtime-l1-1-0.dll">
|
<None Include="..\..\target\debug\api-ms-win-crt-runtime-l1-1-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avcodec-58.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avfilter-7.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avformat-58.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avutil-56.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\bz2.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\ffi-7.dll">
|
<None Include="..\..\target\debug\ffi-7.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gio-2.0-0.dll">
|
<None Include="..\..\target\debug\gio-2.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\glib-2.0-0.dll">
|
<None Include="..\..\target\debug\glib-2.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gmodule-2.0-0.dll">
|
<None Include="..\..\target\debug\gmodule-2.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gobject-2.0-0.dll">
|
<None Include="..\..\target\debug\gobject-2.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\graphene-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstapp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstapp-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstapp.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstaudio-1.0-0.dll">
|
<None Include="..\..\target\debug\gstaudio-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioconvert.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudiofx.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioparsers.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioresample.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstautodetect.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstbase-1.0-0.dll">
|
<None Include="..\..\target\debug\gstbase-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcodecparsers-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcontroller-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcoreelements.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstdeinterlace.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstfft-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstgl-1.0-0.dll">
|
<None Include="..\..\target\debug\gstgl-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstinterleave.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstisomp4.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstlibav.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstnice.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstogg.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstopengl.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstopus.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstpbutils-1.0-0.dll">
|
<None Include="..\..\target\debug\gstpbutils-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstplayback.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstplayer-1.0-0.dll">
|
<None Include="..\..\target\debug\gstplayer-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstproxy.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstreamer-1.0-0.dll">
|
<None Include="..\..\target\debug\gstreamer-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstriff-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstrtp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstrtp-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstrtp.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstsctp-1.0-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstsdp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstsdp-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gsttag-1.0-0.dll">
|
<None Include="..\..\target\debug\gsttag-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gsttheora.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gsttypefindfunctions.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstvideo-1.0-0.dll">
|
<None Include="..\..\target\debug\gstvideo-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoconvert.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideofilter.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoparsersbad.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoscale.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvolume.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvorbis.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvpx.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstwasapi.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstwebrtc-1.0-0.dll">
|
<None Include="..\..\target\debug\gstwebrtc-1.0-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstwebrtc.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\intl-8.dll">
|
<None Include="..\..\target\debug\intl-8.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\libeay32.dll">
|
<None Include="..\..\target\debug\libeay32.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libgmp-10.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libgnutls-30.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libhogweed-4.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libjpeg-8.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libnettle-6.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libogg-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libopus-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libpng16-16.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtasn1-6.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheora-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheoradec-1.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheoraenc-1.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libvorbis-0.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libvorbisenc-2.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\libwinpthread-1.dll">
|
<None Include="..\..\target\debug\libwinpthread-1.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\msvcp140.dll">
|
<None Include="..\..\target\debug\msvcp140.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\nice-10.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\orc-0.4-0.dll">
|
<None Include="..\..\target\debug\orc-0.4-0.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\simpleservo.dll">
|
<None Include="..\..\target\debug\simpleservo.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\ssleay32.dll">
|
<None Include="..\..\target\debug\ssleay32.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\swresample-3.dll">
|
||||||
|
<DeploymentContent>false</DeploymentContent>
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\vcruntime140.dll">
|
<None Include="..\..\target\debug\vcruntime140.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\z-1.dll">
|
<None Include="..\..\target\debug\z-1.dll">
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
<DeploymentContent>false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</DeploymentContent>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\api-ms-win-crt-runtime-l1-1-0.dll">
|
<None Include="..\..\target\release\api-ms-win-crt-runtime-l1-1-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\avcodec-58.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\avfilter-7.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\avformat-58.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\avutil-56.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\bz2.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\ffi-7.dll">
|
<None Include="..\..\target\release\ffi-7.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
@ -318,46 +624,166 @@
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\graphene-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstapp-1.0-0.dll">
|
<None Include="..\..\target\release\gstapp-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstapp.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstaudio-1.0-0.dll">
|
<None Include="..\..\target\release\gstaudio-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioconvert.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudiofx.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioparsers.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioresample.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstautodetect.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstbase-1.0-0.dll">
|
<None Include="..\..\target\release\gstbase-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcodecparsers-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcontroller-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcoreelements.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstdeinterlace.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstfft-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstgl-1.0-0.dll">
|
<None Include="..\..\target\release\gstgl-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstinterleave.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstisomp4.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstlibav.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstnice.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstogg.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstopengl.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstopus.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstpbutils-1.0-0.dll">
|
<None Include="..\..\target\release\gstpbutils-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstplayback.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstplayer-1.0-0.dll">
|
<None Include="..\..\target\release\gstplayer-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstproxy.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstreamer-1.0-0.dll">
|
<None Include="..\..\target\release\gstreamer-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstriff-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstrtp-1.0-0.dll">
|
<None Include="..\..\target\release\gstrtp-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstrtp.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstsctp-1.0-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstsdp-1.0-0.dll">
|
<None Include="..\..\target\release\gstsdp-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
@ -368,16 +794,71 @@
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gsttheora.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gsttypefindfunctions.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstvideo-1.0-0.dll">
|
<None Include="..\..\target\release\gstvideo-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoconvert.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideofilter.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoparsersbad.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoscale.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvolume.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvorbis.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvpx.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstwasapi.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\gstwebrtc-1.0-0.dll">
|
<None Include="..\..\target\release\gstwebrtc-1.0-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstwebrtc.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\intl-8.dll">
|
<None Include="..\..\target\release\intl-8.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
@ -388,6 +869,76 @@
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\libgmp-10.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libgnutls-30.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libhogweed-4.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libjpeg-8.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libnettle-6.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libogg-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libopus-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libpng16-16.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtasn1-6.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheora-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheoradec-1.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheoraenc-1.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libvorbis-0.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libvorbisenc-2.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\libwinpthread-1.dll">
|
<None Include="..\..\target\release\libwinpthread-1.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
@ -398,6 +949,11 @@
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\nice-10.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\orc-0.4-0.dll">
|
<None Include="..\..\target\release\orc-0.4-0.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
@ -413,6 +969,11 @@
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\release\swresample-3.dll">
|
||||||
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</DeploymentContent>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\release\vcruntime140.dll">
|
<None Include="..\..\target\release\vcruntime140.dll">
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
||||||
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
<DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</DeploymentContent>
|
||||||
|
|
|
@ -55,9 +55,27 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="ServoApp_TemporaryKey.pfx" />
|
<None Include="ServoApp_TemporaryKey.pfx" />
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
|
<None Include="..\..\target\debug\simpleservo.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\api-ms-win-crt-runtime-l1-1-0.dll">
|
<None Include="..\..\target\debug\api-ms-win-crt-runtime-l1-1-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avcodec-58.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avfilter-7.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avformat-58.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\avutil-56.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\bz2.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\ffi-7.dll">
|
<None Include="..\..\target\debug\ffi-7.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
@ -73,39 +91,144 @@
|
||||||
<None Include="..\..\target\debug\gobject-2.0-0.dll">
|
<None Include="..\..\target\debug\gobject-2.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\graphene-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstapp.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstapp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstapp-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gstaudio-1.0-0.dll">
|
<None Include="..\..\target\debug\gstaudio-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioconvert.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudiofx.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioparsers.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstaudioresample.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstautodetect.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstbase-1.0-0.dll">
|
<None Include="..\..\target\debug\gstbase-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcodecparsers-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcontroller-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstcoreelements.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstdeinterlace.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstfft-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstgl-1.0-0.dll">
|
<None Include="..\..\target\debug\gstgl-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstinterleave.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstisomp4.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstlibav.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstnice.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstogg.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstopengl.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstopus.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstpbutils-1.0-0.dll">
|
<None Include="..\..\target\debug\gstpbutils-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstplayback.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstplayer-1.0-0.dll">
|
<None Include="..\..\target\debug\gstplayer-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstproxy.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstreamer-1.0-0.dll">
|
<None Include="..\..\target\debug\gstreamer-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstriff-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstrtp.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstrtp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstrtp-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstsctp-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstsdp-1.0-0.dll">
|
<None Include="..\..\target\debug\gstsdp-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\gsttag-1.0-0.dll">
|
<None Include="..\..\target\debug\gsttag-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gsttheora.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gsttypefindfunctions.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstvideo-1.0-0.dll">
|
<None Include="..\..\target\debug\gstvideo-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoconvert.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideofilter.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoparsersbad.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvideoscale.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvolume.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvorbis.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstvpx.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstwasapi.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\gstwebrtc.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\gstwebrtc-1.0-0.dll">
|
<None Include="..\..\target\debug\gstwebrtc-1.0-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
@ -115,19 +238,64 @@
|
||||||
<None Include="..\..\target\debug\libeay32.dll">
|
<None Include="..\..\target\debug\libeay32.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libgmp-10.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libgnutls-30.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libhogweed-4.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libjpeg-8.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libnettle-6.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libogg-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libopus-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libpng16-16.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtasn1-6.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheora-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheoradec-1.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libtheoraenc-1.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libvorbis-0.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\debug\libvorbisenc-2.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\libwinpthread-1.dll">
|
<None Include="..\..\target\debug\libwinpthread-1.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\msvcp140.dll">
|
<None Include="..\..\target\debug\msvcp140.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
|
<None Include="..\..\target\debug\nice-10.dll">
|
||||||
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
|
</None>
|
||||||
<None Include="..\..\target\debug\orc-0.4-0.dll">
|
<None Include="..\..\target\debug\orc-0.4-0.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\simpleservo.dll">
|
<None Include="..\..\target\debug\ssleay32.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\ssleay32.dll">
|
<None Include="..\..\target\debug\swresample-3.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\debug\vcruntime140.dll">
|
<None Include="..\..\target\debug\vcruntime140.dll">
|
||||||
|
@ -136,85 +304,253 @@
|
||||||
<None Include="..\..\target\debug\z-1.dll">
|
<None Include="..\..\target\debug\z-1.dll">
|
||||||
<Filter>ServoDLLsDebug</Filter>
|
<Filter>ServoDLLsDebug</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\z-1.dll">
|
<None Include="..\..\target\release\api-ms-win-crt-runtime-l1-1-0.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\vcruntime140.dll">
|
<None Include="..\..\target\release\avcodec-58.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\ssleay32.dll">
|
<None Include="..\..\target\release\avfilter-7.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\simpleservo.dll">
|
<None Include="..\..\target\release\avformat-58.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\orc-0.4-0.dll">
|
<None Include="..\..\target\release\avutil-56.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\msvcp140.dll">
|
<None Include="..\..\target\release\bz2.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\libwinpthread-1.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\libeay32.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\intl-8.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstwebrtc-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstvideo-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gsttag-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstsdp-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstrtp-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstreamer-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstplayer-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstpbutils-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstgl-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstbase-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstaudio-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gstapp-1.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gobject-2.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gmodule-2.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\glib-2.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
|
||||||
</None>
|
|
||||||
<None Include="..\..\target\release\gio-2.0-0.dll">
|
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\ffi-7.dll">
|
<None Include="..\..\target\release\ffi-7.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
<None Include="..\..\target\release\api-ms-win-crt-runtime-l1-1-0.dll">
|
<None Include="..\..\target\release\gio-2.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\glib-2.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gmodule-2.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gobject-2.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\graphene-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstapp.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstapp-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudio-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioconvert.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudiofx.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioparsers.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstaudioresample.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstautodetect.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstbase-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcodecparsers-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcontroller-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstcoreelements.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstdeinterlace.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstfft-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstgl-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstinterleave.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstisomp4.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstlibav.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstnice.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstogg.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstopengl.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstopus.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstpbutils-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstplayback.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstplayer-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstproxy.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstreamer-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstriff-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstrtp.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstrtp-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstsctp-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstsdp-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gsttag-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gsttheora.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gsttypefindfunctions.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideo-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoconvert.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideofilter.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoparsersbad.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvideoscale.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvolume.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvorbis.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstvpx.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstwasapi.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstwebrtc.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\gstwebrtc-1.0-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\intl-8.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libeay32.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libgmp-10.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libgnutls-30.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libhogweed-4.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libjpeg-8.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libnettle-6.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libogg-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libopus-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libpng16-16.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtasn1-6.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheora-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheoradec-1.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libtheoraenc-1.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libvorbis-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libvorbisenc-2.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\libwinpthread-1.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\msvcp140.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\nice-10.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\orc-0.4-0.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\simpleservo.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\ssleay32.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\swresample-3.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\vcruntime140.dll">
|
||||||
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
|
</None>
|
||||||
|
<None Include="..\..\target\release\z-1.dll">
|
||||||
<Filter>ServoDLLsRelease</Filter>
|
<Filter>ServoDLLsRelease</Filter>
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue