Skip to content

Commit

Permalink
Release v0.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas (0x000027) Uliana committed May 6, 2018
1 parent 34d8793 commit 2708946
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static void Main() {
WriteLine($"Conteúdo: {BitConverter.ToInt32(readed.Buffer, 0)}");

WriteLine("Alterando valor...");
var bytes = BitConverter.GetBytes(9999);
var bytes = BitConverter.GetBytes(999);
var readedAfterWrite = memmim.PrimitiveWrite(address, bytes);
WriteLine($"Conteúdo escrito: {readedAfterWrite.BytesWrited} byte(s)");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
using System.Reflection;
using System.Resources;
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("Uiana.Library.Memmim")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("API minimalista para leitura e escrita de memória em processos remotos.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("JonasUliana")]
[assembly: AssemblyProduct("Uiana.Library.Memmim")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCopyright("Copyleft © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,5 +32,7 @@
// 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("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.0.0.1")]
[assembly: AssemblyFileVersion("0.0.0.1")]
[assembly: NeutralResourcesLanguage("")]

Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Uiana.Library.Memmim.xml</DocumentationFile>
<RegisterForComInterop>true</RegisterForComInterop>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down

0 comments on commit 2708946

Please sign in to comment.