mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-24 19:23:18 -05:00
src: dotnet: fix newlines
This commit is contained in:
@@ -1531,13 +1531,13 @@ namespace Fsp.Interop
|
|||||||
#endif
|
#endif
|
||||||
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(
|
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(
|
||||||
typeof(AssemblyProductAttribute), false);
|
typeof(AssemblyProductAttribute), false);
|
||||||
if (null != attributes &&
|
if (null != attributes &&
|
||||||
0 < attributes.Length &&
|
0 < attributes.Length &&
|
||||||
null != attributes[0] as AssemblyProductAttribute)
|
null != attributes[0] as AssemblyProductAttribute)
|
||||||
{
|
{
|
||||||
ProductName = (attributes[0] as AssemblyProductAttribute).Product;
|
ProductName = (attributes[0] as AssemblyProductAttribute).Product;
|
||||||
ProductFileName = ProductName.ToLowerInvariant();
|
ProductFileName = ProductName.ToLowerInvariant();
|
||||||
}
|
}
|
||||||
LoadProto(LoadDll());
|
LoadProto(LoadDll());
|
||||||
CheckVersion();
|
CheckVersion();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user