-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotes.txt
62 lines (39 loc) · 2.64 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
MSB3025
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets
---
Deleting the .vs folder does not affect or solve the problem.
The issue is in Microsoft.CppCommon.targets:
<!-- make sure lib's pdb is near the lib -->
<Copy Condition="'%(ClCompile.ProgramDatabaseFileName)' != '$(OutDir)$(TargetName).pdb' and
('%(ClCompile.DebugInformationFormat)' == 'ProgramDatabase' or '%(ClCompile.DebugInformationFormat)' == 'EditAndContinue') and
Exists(%(ClCompile.ProgramDatabaseFileName))" SourceFiles="%(ClCompile.ProgramDatabaseFileName)" DestinationFiles="$(OutDir)$(TargetName).pdb" />
The simplest way to fix the problem is to comment out this section, entirely:
<!-- make sure lib's pdb is near the lib
<Copy Condition="'%(ClCompile.ProgramDatabaseFileName)' != '$(OutDir)$(TargetName).pdb' and
('%(ClCompile.DebugInformationFormat)' == 'ProgramDatabase' or '%(ClCompile.DebugInformationFormat)' == 'EditAndContinue') and
Exists(%(ClCompile.ProgramDatabaseFileName))" SourceFiles="%(ClCompile.ProgramDatabaseFileName)" DestinationFiles="$(OutDir)$(TargetName).pdb" /> -->
---
https://learn.microsoft.com/en-us/answers/questions/357286/vs-2019-upgrade-to-1694-causes-compilelink-error.html
---
You can interactively rewrite history with git rebase -i:
git rebase HEAD~6 -i
Will open your editor and allow you to either squash multiple commits into one, or completely remove them from history (by deleting the line for those commits in your editor.) The ~6 means rewrite the last 6 commits, the -i means do it interactively. In your case, you'll want to remove the lines that say "pick 1c4a11a" and "pick b4ab3c".
Note that the most recent commit in the editor that gets launched is the last line, not the first one, and since you're rewriting history and you've already pushed, you'll also have to "git push --force", not just "git push" in order to send your changes upstream.
---
dumpbin /headers obj\adler32.obj | findstr machine
---
vcpkg install libtorrent:x64-windows-static --clean-after-build
vcpkg.exe install libpng:x64-windows-static --clean-after-build
vcpkg.exe install mbedtls:x64-windows-static --clean-after-build
vcpkg.exe install zlib:x64-windows-static --clean-after-build
---
upnpc -e "mut" -a 10.133.242.126 10690 10690 TCP
upnpc -e "muu" -a 10.133.242.126 10694 10694 UDP
---
http://upd.emule-security.org/server.met
https://upd.emule-security.org/ipfilter.zip
https://upd.emule-security.org/ip-to-country.csv.zip
https://upd.emule-security.org/nodes.dat
http://www.emule-mods.de/
https://forum.sharing-devils.to/
---