Skip to content

Commit 78438f9

Browse files
committed
major speed improvement! 0.2 release
1 parent 68b4a6c commit 78438f9

22 files changed

+6771
-1714
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
3+
<assemblyIdentity name="CallSharp.application" version="0.1.1.8" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
4+
<description asmv2:publisher="ActiveMesa" asmv2:product="CallSharp" asmv2:supportUrl="https://github.com/nesteruk/CallSharp" xmlns="urn:schemas-microsoft-com:asm.v1" />
5+
<deployment install="true" mapFileExtensions="true">
6+
<subscription>
7+
<update>
8+
<beforeApplicationStartup />
9+
</update>
10+
</subscription>
11+
<deploymentProvider codebase="https://raw.githubusercontent.com/nesteruk/CallSharp/master/distrib/CallSharp.application" />
12+
</deployment>
13+
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
14+
<framework targetVersion="4.5" profile="Full" supportedRuntime="4.0.30319" />
15+
</compatibleFrameworks>
16+
<dependency>
17+
<dependentAssembly dependencyType="install" codebase="Application Files\CallSharp_0_1_1_8\CallSharp.exe.manifest" size="4568">
18+
<assemblyIdentity name="CallSharp.exe" version="0.1.1.8" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
19+
<hash>
20+
<dsig:Transforms>
21+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
22+
</dsig:Transforms>
23+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
24+
<dsig:DigestValue>M5SHz/d9TmAwwO63yM0/aHflw7kGaU40BJQmzY7HMkU=</dsig:DigestValue>
25+
</hash>
26+
</dependentAssembly>
27+
</dependency>
28+
</asmv1:assembly>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>
Binary file not shown.
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
3+
<asmv1:assemblyIdentity name="CallSharp.exe" version="0.1.1.8" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
4+
<application />
5+
<entryPoint>
6+
<assemblyIdentity name="CallSharp" version="0.2.0.0" language="neutral" processorArchitecture="amd64" />
7+
<commandLine file="CallSharp.exe" parameters="" />
8+
</entryPoint>
9+
<trustInfo>
10+
<security>
11+
<applicationRequestMinimum>
12+
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
13+
<defaultAssemblyRequest permissionSetReference="Custom" />
14+
</applicationRequestMinimum>
15+
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
16+
<!--
17+
UAC Manifest Options
18+
If you want to change the Windows User Account Control level replace the
19+
requestedExecutionLevel node with one of the following.
20+
21+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
22+
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
23+
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
24+
25+
If you want to utilize File and Registry Virtualization for backward
26+
compatibility then delete the requestedExecutionLevel node.
27+
-->
28+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
29+
</requestedPrivileges>
30+
</security>
31+
</trustInfo>
32+
<dependency>
33+
<dependentOS>
34+
<osVersionInfo>
35+
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
36+
</osVersionInfo>
37+
</dependentOS>
38+
</dependency>
39+
<dependency>
40+
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
41+
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
42+
</dependentAssembly>
43+
</dependency>
44+
<dependency>
45+
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CallSharp.exe" size="277504">
46+
<assemblyIdentity name="CallSharp" version="0.2.0.0" language="neutral" processorArchitecture="amd64" />
47+
<hash>
48+
<dsig:Transforms>
49+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
50+
</dsig:Transforms>
51+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
52+
<dsig:DigestValue>JeqtW/29Tz6y38HcftZi1TBQgsBzpxtLi2rUOFgvt9U=</dsig:DigestValue>
53+
</hash>
54+
</dependentAssembly>
55+
</dependency>
56+
<dependency>
57+
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="JetBrains.Annotations.dll" size="61952">
58+
<assemblyIdentity name="JetBrains.Annotations" version="10.1.5.0" publicKeyToken="1010A0D8D6380325" language="neutral" processorArchitecture="msil" />
59+
<hash>
60+
<dsig:Transforms>
61+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
62+
</dsig:Transforms>
63+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
64+
<dsig:DigestValue>hMyfsqhG/5mgv9CScV0dLn7fKWMQ66404QBg2MF6cnA=</dsig:DigestValue>
65+
</hash>
66+
</dependentAssembly>
67+
</dependency>
68+
<file name="CallSharp.exe.config" size="187">
69+
<hash>
70+
<dsig:Transforms>
71+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
72+
</dsig:Transforms>
73+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
74+
<dsig:DigestValue>xm4bo26HQ0LNVwz1vdPYtzhkpMnp2AI5i+f0b+OahTI=</dsig:DigestValue>
75+
</hash>
76+
</file>
77+
<file name="Db\StaticMemberDatabase.tt" size="20277">
78+
<hash>
79+
<dsig:Transforms>
80+
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
81+
</dsig:Transforms>
82+
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
83+
<dsig:DigestValue>z8B1Yi7ZLQei69WU+FjuNXVIuA1c3qYamZ3EDXWExnE=</dsig:DigestValue>
84+
</hash>
85+
</file>
86+
</asmv1:assembly>

0 commit comments

Comments
 (0)