mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Correct server version.
This commit is contained in:
4
.idea/.idea.DiscImageChef/.idea/contentModel.xml
generated
4
.idea/.idea.DiscImageChef/.idea/contentModel.xml
generated
@@ -1857,6 +1857,9 @@
|
|||||||
<e p="UsbVendor.cs" t="Include" />
|
<e p="UsbVendor.cs" t="Include" />
|
||||||
<e p="Version.cs" t="Include" />
|
<e p="Version.cs" t="Include" />
|
||||||
</e>
|
</e>
|
||||||
|
<e p="Properties" t="Include">
|
||||||
|
<e p="AssemblyInfo.cs" t="Include" />
|
||||||
|
</e>
|
||||||
<e p="Reports" t="Include">
|
<e p="Reports" t="Include">
|
||||||
<e p=".htaccess" t="Include" />
|
<e p=".htaccess" t="Include" />
|
||||||
</e>
|
</e>
|
||||||
@@ -1894,7 +1897,6 @@
|
|||||||
<e p="README.md" t="Include" />
|
<e p="README.md" t="Include" />
|
||||||
<e p="TODO.md" t="Include" />
|
<e p="TODO.md" t="Include" />
|
||||||
</e>
|
</e>
|
||||||
<e p="dos.css" t="Include" />
|
|
||||||
<e p="int10h.org" t="Include">
|
<e p="int10h.org" t="Include">
|
||||||
<e p=".htaccess" t="Include" />
|
<e p=".htaccess" t="Include" />
|
||||||
<e p="vga_squarepx.eot" t="Include" />
|
<e p="vga_squarepx.eot" t="Include" />
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
|
|||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("DiscImageChef.Server.Task")]
|
[assembly: AssemblyProduct("DiscImageChef.Server.Task")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2018")]
|
[assembly: AssemblyCopyright("Copyright © 2011-2018 Natalia Portillo")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.0.0")]
|
[assembly: AssemblyVersion("4.5.99.1693")]
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
[assembly: AssemblyFileVersion("4.5.99.1693")]
|
||||||
@@ -273,6 +273,7 @@
|
|||||||
<Compile Include="Models\UsbProduct.cs" />
|
<Compile Include="Models\UsbProduct.cs" />
|
||||||
<Compile Include="Models\UsbVendor.cs" />
|
<Compile Include="Models\UsbVendor.cs" />
|
||||||
<Compile Include="Models\Version.cs" />
|
<Compile Include="Models\Version.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="docs\Changelog.md" />
|
<Content Include="docs\Changelog.md" />
|
||||||
|
|||||||
35
DiscImageChef.Server/Properties/AssemblyInfo.cs
Normal file
35
DiscImageChef.Server/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("DiscImageChef.Server")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("DiscImageChef.Server")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2011-2018 Natalia Portillo")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("A893FA0E-6952-4517-B4AA-658E421737C1")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
// by using the '*' as shown below:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("4.5.99.1693")]
|
||||||
|
[assembly: AssemblyFileVersion("4.5.99.1693")]
|
||||||
Reference in New Issue
Block a user