mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
commit
dfe6dc0492
@ -10,6 +10,7 @@ namespace MediaBrowser.Api
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Route("/Branding/Css", "GET", Summary = "Gets custom css")]
|
[Route("/Branding/Css", "GET", Summary = "Gets custom css")]
|
||||||
|
[Route("/Branding/Css.css", "GET", Summary = "Gets custom css")]
|
||||||
public class GetBrandingCss
|
public class GetBrandingCss
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -828,8 +828,9 @@ namespace MediaBrowser.Api.Playback.Hls
|
|||||||
// See if we can save come cpu cycles by avoiding encoding
|
// See if we can save come cpu cycles by avoiding encoding
|
||||||
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
if (state.VideoStream != null && IsH264(state.VideoStream))
|
if (state.VideoStream != null && IsH264(state.VideoStream) && !string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
|
Logger.Debug("Enabling h264_mp4toannexb due to nal_length_size of {0}", state.VideoStream.NalLengthSize);
|
||||||
args += " -bsf:v h264_mp4toannexb";
|
args += " -bsf:v h264_mp4toannexb";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,6 +87,11 @@ namespace MediaBrowser.Api.Playback.Hls
|
|||||||
if (codec.Equals("copy", StringComparison.OrdinalIgnoreCase))
|
if (codec.Equals("copy", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
// if h264_mp4toannexb is ever added, do not use it for live tv
|
// if h264_mp4toannexb is ever added, do not use it for live tv
|
||||||
|
if (state.VideoStream != null && IsH264(state.VideoStream) && !string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
Logger.Debug("Enabling h264_mp4toannexb due to nal_length_size of {0}", state.VideoStream.NalLengthSize);
|
||||||
|
args += " -bsf:v h264_mp4toannexb";
|
||||||
|
}
|
||||||
return args;
|
return args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,9 +139,9 @@ namespace MediaBrowser.Api.Playback.Progressive
|
|||||||
|
|
||||||
if (string.Equals(videoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(videoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
if (state.VideoStream != null && IsH264(state.VideoStream) &&
|
if (state.VideoStream != null && IsH264(state.VideoStream) && string.Equals(state.OutputContainer, "ts", StringComparison.OrdinalIgnoreCase) && !string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.OrdinalIgnoreCase))
|
||||||
(string.Equals(state.OutputContainer, "ts", StringComparison.OrdinalIgnoreCase)))
|
|
||||||
{
|
{
|
||||||
|
Logger.Debug("Enabling h264_mp4toannexb due to nal_length_size of {0}", state.VideoStream.NalLengthSize);
|
||||||
args += " -bsf:v h264_mp4toannexb";
|
args += " -bsf:v h264_mp4toannexb";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -287,7 +287,9 @@ namespace MediaBrowser.Controller.Entities.TV
|
|||||||
id.AnimeSeriesIndex = series.AnimeSeriesIndex;
|
id.AnimeSeriesIndex = series.AnimeSeriesIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
id.IsMissingEpisode = IsMissingEpisode;
|
||||||
id.IndexNumberEnd = IndexNumberEnd;
|
id.IndexNumberEnd = IndexNumberEnd;
|
||||||
|
id.IsVirtualUnaired = IsVirtualUnaired;
|
||||||
|
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,9 @@ namespace MediaBrowser.Controller.Providers
|
|||||||
public int? IndexNumberEnd { get; set; }
|
public int? IndexNumberEnd { get; set; }
|
||||||
public int? AnimeSeriesIndex { get; set; }
|
public int? AnimeSeriesIndex { get; set; }
|
||||||
|
|
||||||
|
public bool IsMissingEpisode { get; set; }
|
||||||
|
public bool IsVirtualUnaired { get; set; }
|
||||||
|
|
||||||
public EpisodeInfo()
|
public EpisodeInfo()
|
||||||
{
|
{
|
||||||
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
SeriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
@ -73,9 +73,9 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||||||
|
|
||||||
if (string.Equals(videoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
if (string.Equals(videoCodec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
if (state.VideoStream != null && IsH264(state.VideoStream) &&
|
if (state.VideoStream != null && IsH264(state.VideoStream) && string.Equals(state.Options.OutputContainer, "ts", StringComparison.OrdinalIgnoreCase) && !string.Equals(state.VideoStream.NalLengthSize, "0", StringComparison.OrdinalIgnoreCase))
|
||||||
(string.Equals(state.Options.OutputContainer, "ts", StringComparison.OrdinalIgnoreCase) || isOutputMkv))
|
|
||||||
{
|
{
|
||||||
|
Logger.Debug("Enabling h264_mp4toannexb due to nal_length_size of {0}", state.VideoStream.NalLengthSize);
|
||||||
args += " -bsf:v h264_mp4toannexb";
|
args += " -bsf:v h264_mp4toannexb";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -407,7 +407,8 @@ namespace MediaBrowser.MediaEncoding.Probing
|
|||||||
Profile = streamInfo.profile,
|
Profile = streamInfo.profile,
|
||||||
Level = streamInfo.level,
|
Level = streamInfo.level,
|
||||||
Index = streamInfo.index,
|
Index = streamInfo.index,
|
||||||
PixelFormat = streamInfo.pix_fmt
|
PixelFormat = streamInfo.pix_fmt,
|
||||||
|
NalLengthSize = streamInfo.nal_length_size
|
||||||
};
|
};
|
||||||
|
|
||||||
// Filter out junk
|
// Filter out junk
|
||||||
|
@ -33,7 +33,9 @@ namespace MediaBrowser.Model.Entities
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The comment.</value>
|
/// <value>The comment.</value>
|
||||||
public string Comment { get; set; }
|
public string Comment { get; set; }
|
||||||
|
|
||||||
|
public string NalLengthSize { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether this instance is interlaced.
|
/// Gets or sets a value indicating whether this instance is interlaced.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -310,6 +310,11 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(item is Audio) && !(item is Video))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ namespace MediaBrowser.Providers.TV
|
|||||||
{
|
{
|
||||||
private readonly IJsonSerializer _jsonSerializer;
|
private readonly IJsonSerializer _jsonSerializer;
|
||||||
private readonly IHttpClient _httpClient;
|
private readonly IHttpClient _httpClient;
|
||||||
private OmdbItemProvider _itemProvider;
|
private readonly OmdbItemProvider _itemProvider;
|
||||||
|
|
||||||
public OmdbEpisodeProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, ILogger logger, ILibraryManager libraryManager)
|
public OmdbEpisodeProvider(IJsonSerializer jsonSerializer, IHttpClient httpClient, ILogger logger, ILibraryManager libraryManager)
|
||||||
{
|
{
|
||||||
@ -41,6 +41,12 @@ namespace MediaBrowser.Providers.TV
|
|||||||
Item = new Episode()
|
Item = new Episode()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Allowing this will dramatically increase scan times
|
||||||
|
if (info.IsMissingEpisode || info.IsVirtualUnaired)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
var imdbId = info.GetProviderId(MetadataProviders.Imdb);
|
var imdbId = info.GetProviderId(MetadataProviders.Imdb);
|
||||||
if (string.IsNullOrWhiteSpace(imdbId))
|
if (string.IsNullOrWhiteSpace(imdbId))
|
||||||
{
|
{
|
||||||
|
@ -64,6 +64,12 @@ namespace MediaBrowser.Providers.TV
|
|||||||
{
|
{
|
||||||
var result = new MetadataResult<Episode>();
|
var result = new MetadataResult<Episode>();
|
||||||
|
|
||||||
|
// Allowing this will dramatically increase scan times
|
||||||
|
if (info.IsMissingEpisode || info.IsVirtualUnaired)
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
string seriesTmdbId;
|
string seriesTmdbId;
|
||||||
info.SeriesProviderIds.TryGetValue(MetadataProviders.Tmdb.ToString(), out seriesTmdbId);
|
info.SeriesProviderIds.TryGetValue(MetadataProviders.Tmdb.ToString(), out seriesTmdbId);
|
||||||
|
|
||||||
|
@ -511,8 +511,15 @@ namespace MediaBrowser.Server.Implementations.LiveTv
|
|||||||
if (!(service is EmbyTV.EmbyTV))
|
if (!(service is EmbyTV.EmbyTV))
|
||||||
{
|
{
|
||||||
// We can't trust that we'll be able to direct stream it through emby server, no matter what the provider says
|
// We can't trust that we'll be able to direct stream it through emby server, no matter what the provider says
|
||||||
mediaSource.SupportsDirectStream = true;
|
mediaSource.SupportsDirectStream = false;
|
||||||
mediaSource.SupportsTranscoding = true;
|
mediaSource.SupportsTranscoding = true;
|
||||||
|
foreach (var stream in mediaSource.MediaStreams)
|
||||||
|
{
|
||||||
|
if (stream.Type == MediaStreamType.Video && string.IsNullOrWhiteSpace(stream.NalLengthSize))
|
||||||
|
{
|
||||||
|
stream.NalLengthSize = "0";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -317,6 +317,12 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||||||
videoCodec = "mpeg2video";
|
videoCodec = "mpeg2video";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string nal = null;
|
||||||
|
if (string.Equals(videoCodec, "h264", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
nal = "0";
|
||||||
|
}
|
||||||
|
|
||||||
var url = GetApiUrl(info, true) + "/auto/v" + channelId;
|
var url = GetApiUrl(info, true) + "/auto/v" + channelId;
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(profile) && !string.Equals(profile, "native", StringComparison.OrdinalIgnoreCase))
|
if (!string.IsNullOrWhiteSpace(profile) && !string.Equals(profile, "native", StringComparison.OrdinalIgnoreCase))
|
||||||
@ -339,7 +345,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||||||
Codec = videoCodec,
|
Codec = videoCodec,
|
||||||
Width = width,
|
Width = width,
|
||||||
Height = height,
|
Height = height,
|
||||||
BitRate = videoBitrate
|
BitRate = videoBitrate,
|
||||||
|
NalLengthSize = nal
|
||||||
|
|
||||||
},
|
},
|
||||||
new MediaStream
|
new MediaStream
|
||||||
|
@ -21,11 +21,42 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
AddPixelFormatColumnCommand();
|
AddPixelFormatColumnCommand();
|
||||||
AddBitDepthCommand();
|
AddBitDepthCommand();
|
||||||
AddIsAnamorphicColumn();
|
AddIsAnamorphicColumn();
|
||||||
AddIsCabacColumn();
|
|
||||||
AddKeyFramesColumn();
|
AddKeyFramesColumn();
|
||||||
AddRefFramesCommand();
|
AddRefFramesCommand();
|
||||||
AddCodecTagColumn();
|
AddCodecTagColumn();
|
||||||
AddCommentColumn();
|
AddCommentColumn();
|
||||||
|
AddNalColumn();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AddNalColumn()
|
||||||
|
{
|
||||||
|
using (var cmd = _connection.CreateCommand())
|
||||||
|
{
|
||||||
|
cmd.CommandText = "PRAGMA table_info(mediastreams)";
|
||||||
|
|
||||||
|
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult))
|
||||||
|
{
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
if (!reader.IsDBNull(1))
|
||||||
|
{
|
||||||
|
var name = reader.GetString(1);
|
||||||
|
|
||||||
|
if (string.Equals(name, "NalLengthSize", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var builder = new StringBuilder();
|
||||||
|
|
||||||
|
builder.AppendLine("alter table mediastreams");
|
||||||
|
builder.AppendLine("add column NalLengthSize TEXT");
|
||||||
|
|
||||||
|
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddCommentColumn()
|
private void AddCommentColumn()
|
||||||
@ -183,37 +214,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddIsCabacColumn()
|
|
||||||
{
|
|
||||||
using (var cmd = _connection.CreateCommand())
|
|
||||||
{
|
|
||||||
cmd.CommandText = "PRAGMA table_info(mediastreams)";
|
|
||||||
|
|
||||||
using (var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess | CommandBehavior.SingleResult))
|
|
||||||
{
|
|
||||||
while (reader.Read())
|
|
||||||
{
|
|
||||||
if (!reader.IsDBNull(1))
|
|
||||||
{
|
|
||||||
var name = reader.GetString(1);
|
|
||||||
|
|
||||||
if (string.Equals(name, "IsCabac", StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var builder = new StringBuilder();
|
|
||||||
|
|
||||||
builder.AppendLine("alter table mediastreams");
|
|
||||||
builder.AppendLine("add column IsCabac BIT NULL");
|
|
||||||
|
|
||||||
_connection.RunQueries(new[] { builder.ToString() }, _logger);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void AddKeyFramesColumn()
|
private void AddKeyFramesColumn()
|
||||||
{
|
{
|
||||||
using (var cmd = _connection.CreateCommand())
|
using (var cmd = _connection.CreateCommand())
|
||||||
|
@ -124,7 +124,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
_connection = await SqliteExtensions.ConnectToDb(dbFile, Logger).ConfigureAwait(false);
|
_connection = await SqliteExtensions.ConnectToDb(dbFile, Logger).ConfigureAwait(false);
|
||||||
|
|
||||||
var createMediaStreamsTableCommand
|
var createMediaStreamsTableCommand
|
||||||
= "create table if not exists mediastreams (ItemId GUID, StreamIndex INT, StreamType TEXT, Codec TEXT, Language TEXT, ChannelLayout TEXT, Profile TEXT, AspectRatio TEXT, Path TEXT, IsInterlaced BIT, BitRate INT NULL, Channels INT NULL, SampleRate INT NULL, IsDefault BIT, IsForced BIT, IsExternal BIT, Height INT NULL, Width INT NULL, AverageFrameRate FLOAT NULL, RealFrameRate FLOAT NULL, Level FLOAT NULL, PixelFormat TEXT, BitDepth INT NULL, IsAnamorphic BIT NULL, RefFrames INT NULL, IsCabac BIT NULL, CodecTag TEXT NULL, Comment TEXT NULL, PRIMARY KEY (ItemId, StreamIndex))";
|
= "create table if not exists mediastreams (ItemId GUID, StreamIndex INT, StreamType TEXT, Codec TEXT, Language TEXT, ChannelLayout TEXT, Profile TEXT, AspectRatio TEXT, Path TEXT, IsInterlaced BIT, BitRate INT NULL, Channels INT NULL, SampleRate INT NULL, IsDefault BIT, IsForced BIT, IsExternal BIT, Height INT NULL, Width INT NULL, AverageFrameRate FLOAT NULL, RealFrameRate FLOAT NULL, Level FLOAT NULL, PixelFormat TEXT, BitDepth INT NULL, IsAnamorphic BIT NULL, RefFrames INT NULL, CodecTag TEXT NULL, Comment TEXT NULL, NalLengthSize TEXT NULL, PRIMARY KEY (ItemId, StreamIndex))";
|
||||||
|
|
||||||
string[] queries = {
|
string[] queries = {
|
||||||
|
|
||||||
@ -389,9 +389,9 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
"BitDepth",
|
"BitDepth",
|
||||||
"IsAnamorphic",
|
"IsAnamorphic",
|
||||||
"RefFrames",
|
"RefFrames",
|
||||||
"IsCabac",
|
|
||||||
"CodecTag",
|
"CodecTag",
|
||||||
"Comment"
|
"Comment",
|
||||||
|
"NalLengthSize"
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -2889,10 +2889,10 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
_saveStreamCommand.GetParameter(index++).Value = stream.BitDepth;
|
_saveStreamCommand.GetParameter(index++).Value = stream.BitDepth;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.IsAnamorphic;
|
_saveStreamCommand.GetParameter(index++).Value = stream.IsAnamorphic;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.RefFrames;
|
_saveStreamCommand.GetParameter(index++).Value = stream.RefFrames;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = null;
|
|
||||||
|
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.CodecTag;
|
_saveStreamCommand.GetParameter(index++).Value = stream.CodecTag;
|
||||||
_saveStreamCommand.GetParameter(index++).Value = stream.Comment;
|
_saveStreamCommand.GetParameter(index++).Value = stream.Comment;
|
||||||
|
_saveStreamCommand.GetParameter(index++).Value = stream.NalLengthSize;
|
||||||
|
|
||||||
_saveStreamCommand.Transaction = transaction;
|
_saveStreamCommand.Transaction = transaction;
|
||||||
_saveStreamCommand.ExecuteNonQuery();
|
_saveStreamCommand.ExecuteNonQuery();
|
||||||
@ -3041,16 +3041,19 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||||||
item.RefFrames = reader.GetInt32(24);
|
item.RefFrames = reader.GetInt32(24);
|
||||||
}
|
}
|
||||||
|
|
||||||
// cabac no longer used
|
if (!reader.IsDBNull(25))
|
||||||
|
{
|
||||||
|
item.CodecTag = reader.GetString(25);
|
||||||
|
}
|
||||||
|
|
||||||
if (!reader.IsDBNull(26))
|
if (!reader.IsDBNull(26))
|
||||||
{
|
{
|
||||||
item.CodecTag = reader.GetString(26);
|
item.Comment = reader.GetString(26);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!reader.IsDBNull(27))
|
if (!reader.IsDBNull(27))
|
||||||
{
|
{
|
||||||
item.Comment = reader.GetString(27);
|
item.NalLengthSize = reader.GetString(27);
|
||||||
}
|
}
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
|
@ -101,6 +101,9 @@
|
|||||||
<Content Include="dashboard-ui\autoorganizesmart.html">
|
<Content Include="dashboard-ui\autoorganizesmart.html">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
<Content Include="dashboard-ui\components\apphost.js">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
<Content Include="dashboard-ui\components\chromecasthelpers.js">
|
<Content Include="dashboard-ui\components\chromecasthelpers.js">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
@ -110,9 +113,6 @@
|
|||||||
<Content Include="dashboard-ui\components\favoriteitems.js">
|
<Content Include="dashboard-ui\components\favoriteitems.js">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
<Content Include="dashboard-ui\components\filedownloader.js">
|
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
||||||
</Content>
|
|
||||||
<Content Include="dashboard-ui\components\filterdialog\filterdialog.js">
|
<Content Include="dashboard-ui\components\filterdialog\filterdialog.js">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
//[assembly: AssemblyVersion("3.0.*")]
|
[assembly: AssemblyVersion("3.0.*")]
|
||||||
[assembly: AssemblyVersion("3.0.5930")]
|
//[assembly: AssemblyVersion("3.0.5930")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user