quarta-feira, 8 de novembro de 2017

Windows 10 Media Creation Tool error: 0x80072F76-0x20017


Windows 10 Media Creation Tool error: 0x80072F76-0x20017


Esse erro se da pois você usou o media creation tools anteriormente
Oi é muito fácil resolver isso
1-) feche o programa
2-) apagar as 2  pastas que estão no disco C
$Windows.~WS
$WINDOWS.~BT

agora pode usar o programa

terça-feira, 7 de novembro de 2017

Xamarin [Failure] Could not find file designtime\Resource.Designer.cs

Xamarin

[Failure] Could not find file designtime\Resource.Designer.cs

Solution
Edit the .csproj and find

Resources\Resource.designer.cs

replace with:

Resources
Resources\Resource.designer.cs
Resource


Source:

https://forums.xamarin.com/discussion/13339/resource-designer-cs-not-regenerated#latest

https://stackoverflow.com/questions/47161553/xamarin-failure-could-not-find-file-designtime-resource-designer-cs/

domingo, 5 de novembro de 2017

Pintura Automotiva

Lixa 80, 150, 320

Massa Poliester + catalisador
Primer PU 3100 + catalisador
Thinner 454 (diluição)
Verniz PU 5100 + catalisador

Fita adesiva (verde)

Tinta
Dupla camada - poliéster e verniz
    ou
Mono camada - PU (Poliuretano)

Rolo de papel (ao invés de jornal)

Pistola HVLP

Compressor de Ar 25L

terça-feira, 9 de maio de 2017

Como gerar classes C# do SCHEMA XML da NF-e


Problema solucionado.

É preciso incluir o nome de todos os XSDs importanos no no schema principal.

neste caso ficaria

xsd.exe nfe_v1.10.xsd xmldsig-core-schema_v1.01.xsd /l:cs /c /n:teste /edb /o:"d:\nfe\project"


xsd nfe_v3.10.xsd xmldsig-core-schema_v1.01.xsd /c

sábado, 8 de abril de 2017

APELOS URGENTES


APELOS URGENTES
Mensagens e Profecias de Nossa Senhora

segunda-feira, 27 de fevereiro de 2017

Xamarin Forms Previewer: The previewer requires a 64bit version of Java. You can download a 64bit version from https://java.com/en/download.

Xamarin Forms Previewer: The previewer requires a 64bit version of Java. You can download a 64bit version from https://java.com/en/download.


Solution

The previewer requires a 64-bit version of Oracle Java JDK 8 (1.8) or higher. Please install it and then set the Java Development Kit Location in the Tools->Options->Xamarin->Android Settings menu. Note that installing a 64-bit JDK requires 64-bit Windows (see also https://support.microsoft.com/help/827218).


Download
http://www.oracle.com/technetwork/pt/java/javase/downloads/jdk8-downloads-2133151.html

 Java SE Development Kit 8u121
Windows x64

terça-feira, 7 de fevereiro de 2017

My git commands


git init

git remote add origin https://nomedacontaespacodetrabalho.visualstudio.com/_git/site

copy git ignore file

git add diretorio

git commit -m initial

git push -u origin --all



Visual Studio Team Services Accounts

terça-feira, 10 de janeiro de 2017

Skype Preview not updating on Windows 10 Mobile Store

I removed the SD card from the Phone, then tried the download again on the Windows Store and it installed successfully.

sexta-feira, 6 de janeiro de 2017

AZURE SQL see connnection count

SELECT
    c.session_id, c.net_transport, c.encrypt_option,
    c.auth_scheme, s.host_name, s.program_name,
    s.client_interface_name, s.login_name, s.nt_domain,
    s.nt_user_name, s.original_login_name, c.connect_time,
    s.login_time
FROM sys.dm_exec_connections AS c
JOIN sys.dm_exec_sessions AS s
    ON c.session_id = s.session_id
;