Skip to content

Commit c813a27

Browse files
Cihan CakirCihan Cakir
Cihan Cakir
authored and
Cihan Cakir
committed
Update Crypt
1 parent 513be76 commit c813a27

File tree

87 files changed

+705
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+705
-57
lines changed

Adesso.Dapr.sln

+12
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C95A3459-9C8
141141
EndProject
142142
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Adesso.Dapr.PubSub", "PubSub\src\Adesso.Dapr.PubSub\Adesso.Dapr.PubSub.csproj", "{DDACE76D-33A2-43F2-8A17-A4ADB76AFAE3}"
143143
EndProject
144+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Cryptography", "Cryptography", "{260144D6-C5B1-4A23-B062-B505FDD65BF3}"
145+
EndProject
146+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{054F9109-011A-447C-B85B-6610CF5E7588}"
147+
EndProject
148+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Adesso.Dapr.Crypt", "Cryptography\src\Adesso.Dapr.Crypt\Adesso.Dapr.Crypt.csproj", "{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D}"
149+
EndProject
144150
Global
145151
GlobalSection(SolutionConfigurationPlatforms) = preSolution
146152
Debug|Any CPU = Debug|Any CPU
@@ -290,6 +296,10 @@ Global
290296
{DDACE76D-33A2-43F2-8A17-A4ADB76AFAE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
291297
{DDACE76D-33A2-43F2-8A17-A4ADB76AFAE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
292298
{DDACE76D-33A2-43F2-8A17-A4ADB76AFAE3}.Release|Any CPU.Build.0 = Release|Any CPU
299+
{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
300+
{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D}.Debug|Any CPU.Build.0 = Debug|Any CPU
301+
{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D}.Release|Any CPU.ActiveCfg = Release|Any CPU
302+
{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D}.Release|Any CPU.Build.0 = Release|Any CPU
293303
EndGlobalSection
294304
GlobalSection(NestedProjects) = preSolution
295305
{9E4CD85B-C5E3-496C-9EC9-0E4320AE8FAD} = {DC619BD2-861C-4355-A767-0BADCF82ED98}
@@ -357,5 +367,7 @@ Global
357367
{ED617F11-ACF8-4860-BC01-9C710AE834DA} = {7F81FBCE-24C0-4867-894E-25E21C52DD00}
358368
{C95A3459-9C89-4834-8BE2-C43D4B31EF6D} = {C190FDD3-C5DB-4AAB-9C5A-C0CA13FBF55B}
359369
{DDACE76D-33A2-43F2-8A17-A4ADB76AFAE3} = {C95A3459-9C89-4834-8BE2-C43D4B31EF6D}
370+
{054F9109-011A-447C-B85B-6610CF5E7588} = {260144D6-C5B1-4A23-B062-B505FDD65BF3}
371+
{5BD886A6-81D9-48A0-8AA4-EA2389A5F78D} = {054F9109-011A-447C-B85B-6610CF5E7588}
360372
EndGlobalSection
361373
EndGlobal

Core/.gitignore

+335
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,335 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
7+
*.suo
8+
*.user
9+
*.userosscache
10+
*.sln.docstates
11+
.vscode
12+
13+
**/bin/
14+
**/obj/
15+
*.dll
16+
*.pdb
17+
# User-specific files (MonoDevelop/Xamarin Studio)
18+
*.userprefs
19+
20+
# Build results
21+
[Dd]ebug/
22+
[Dd]ebugPublic/
23+
[Rr]elease/
24+
[Rr]eleases/
25+
x64/
26+
x86/
27+
bld/
28+
[Bb]in/
29+
[Oo]bj/
30+
[Ll]og/
31+
32+
# Visual Studio 2015/2017 cache/options directory
33+
.vs/
34+
# Uncomment if you have tasks that create the project's static files in wwwroot
35+
#wwwroot/
36+
37+
# Visual Studio 2017 auto generated files
38+
Generated\ Files/
39+
40+
# MSTest test Results
41+
[Tt]est[Rr]esult*/
42+
[Bb]uild[Ll]og.*
43+
44+
# NUNIT
45+
*.VisualState.xml
46+
TestResult.xml
47+
48+
# Build Results of an ATL Project
49+
[Dd]ebugPS/
50+
[Rr]eleasePS/
51+
dlldata.c
52+
53+
# Benchmark Results
54+
BenchmarkDotNet.Artifacts/
55+
56+
# .NET Core
57+
project.lock.json
58+
project.fragment.lock.json
59+
artifacts/
60+
**/Properties/launchSettings.json
61+
62+
# StyleCop
63+
StyleCopReport.xml
64+
65+
# Files built by Visual Studio
66+
*_i.c
67+
*_p.c
68+
*_i.h
69+
*.ilk
70+
*.meta
71+
*.obj
72+
*.iobj
73+
*.pch
74+
*.pdb
75+
*.ipdb
76+
*.pgc
77+
*.pgd
78+
*.rsp
79+
*.sbr
80+
*.tlb
81+
*.tli
82+
*.tlh
83+
*.tmp
84+
*.tmp_proj
85+
*.log
86+
*.vspscc
87+
*.vssscc
88+
.builds
89+
*.pidb
90+
*.svclog
91+
*.scc
92+
93+
# Chutzpah Test files
94+
_Chutzpah*
95+
96+
# Visual C++ cache files
97+
ipch/
98+
*.aps
99+
*.ncb
100+
*.opendb
101+
*.opensdf
102+
*.sdf
103+
*.cachefile
104+
*.VC.db
105+
*.VC.VC.opendb
106+
107+
# Visual Studio profiler
108+
*.psess
109+
*.vsp
110+
*.vspx
111+
*.sap
112+
113+
# Visual Studio Trace Files
114+
*.e2e
115+
116+
# TFS 2012 Local Workspace
117+
$tf/
118+
119+
# Guidance Automation Toolkit
120+
*.gpState
121+
122+
# ReSharper is a .NET coding add-in
123+
_ReSharper*/
124+
*.[Rr]e[Ss]harper
125+
*.DotSettings.user
126+
127+
# JustCode is a .NET coding add-in
128+
.JustCode
129+
130+
# TeamCity is a build add-in
131+
_TeamCity*
132+
133+
# DotCover is a Code Coverage Tool
134+
*.dotCover
135+
136+
# AxoCover is a Code Coverage Tool
137+
.axoCover/*
138+
!.axoCover/settings.json
139+
140+
# Visual Studio code coverage results
141+
*.coverage
142+
*.coveragexml
143+
144+
# NCrunch
145+
_NCrunch_*
146+
.*crunch*.local.xml
147+
nCrunchTemp_*
148+
149+
# MightyMoose
150+
*.mm.*
151+
AutoTest.Net/
152+
153+
# Web workbench (sass)
154+
.sass-cache/
155+
156+
# Installshield output folder
157+
[Ee]xpress/
158+
159+
# DocProject is a documentation generator add-in
160+
DocProject/buildhelp/
161+
DocProject/Help/*.HxT
162+
DocProject/Help/*.HxC
163+
DocProject/Help/*.hhc
164+
DocProject/Help/*.hhk
165+
DocProject/Help/*.hhp
166+
DocProject/Help/Html2
167+
DocProject/Help/html
168+
169+
# Click-Once directory
170+
publish/
171+
172+
# Publish Web Output
173+
*.[Pp]ublish.xml
174+
*.azurePubxml
175+
# Note: Comment the next line if you want to checkin your web deploy settings,
176+
# but database connection strings (with potential passwords) will be unencrypted
177+
*.pubxml
178+
*.publishproj
179+
180+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181+
# checkin your Azure Web App publish settings, but sensitive information contained
182+
# in these scripts will be unencrypted
183+
PublishScripts/
184+
185+
# NuGet Packages
186+
*.nupkg
187+
# The packages folder can be ignored because of Package Restore
188+
**/[Pp]ackages/*
189+
# except build/, which is used as an MSBuild target.
190+
!**/[Pp]ackages/build/
191+
# Uncomment if necessary however generally it will be regenerated when needed
192+
#!**/[Pp]ackages/repositories.config
193+
# NuGet v3's project.json files produces more ignorable files
194+
*.nuget.props
195+
*.nuget.targets
196+
197+
# Microsoft Azure Build Output
198+
csx/
199+
*.build.csdef
200+
201+
# Microsoft Azure Emulator
202+
ecf/
203+
rcf/
204+
205+
# Windows Store app package directories and files
206+
AppPackages/
207+
BundleArtifacts/
208+
Package.StoreAssociation.xml
209+
_pkginfo.txt
210+
*.appx
211+
212+
# Visual Studio cache files
213+
# files ending in .cache can be ignored
214+
*.[Cc]ache
215+
# but keep track of directories ending in .cache
216+
!*.[Cc]ache/
217+
218+
# Others
219+
ClientBin/
220+
~$*
221+
*~
222+
*.dbmdl
223+
*.dbproj.schemaview
224+
*.jfm
225+
*.pfx
226+
*.publishsettings
227+
orleans.codegen.cs
228+
229+
# Including strong name files can present a security risk
230+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
231+
#*.snk
232+
233+
# Since there are multiple workflows, uncomment next line to ignore bower_components
234+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
235+
#bower_components/
236+
237+
# RIA/Silverlight projects
238+
Generated_Code/
239+
240+
# Backup & report files from converting an old project file
241+
# to a newer Visual Studio version. Backup files are not needed,
242+
# because we have git ;-)
243+
_UpgradeReport_Files/
244+
Backup*/
245+
UpgradeLog*.XML
246+
UpgradeLog*.htm
247+
ServiceFabricBackup/
248+
*.rptproj.bak
249+
250+
# SQL Server files
251+
*.mdf
252+
*.ldf
253+
*.ndf
254+
255+
# Business Intelligence projects
256+
*.rdl.data
257+
*.bim.layout
258+
*.bim_*.settings
259+
*.rptproj.rsuser
260+
261+
# Microsoft Fakes
262+
FakesAssemblies/
263+
264+
# GhostDoc plugin setting file
265+
*.GhostDoc.xml
266+
267+
# Node.js Tools for Visual Studio
268+
.ntvs_analysis.dat
269+
node_modules/
270+
271+
# Visual Studio 6 build log
272+
*.plg
273+
274+
# Visual Studio 6 workspace options file
275+
*.opt
276+
277+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
278+
*.vbw
279+
280+
# Visual Studio LightSwitch build output
281+
**/*.HTMLClient/GeneratedArtifacts
282+
**/*.DesktopClient/GeneratedArtifacts
283+
**/*.DesktopClient/ModelManifest.xml
284+
**/*.Server/GeneratedArtifacts
285+
**/*.Server/ModelManifest.xml
286+
_Pvt_Extensions
287+
288+
# Paket dependency manager
289+
.paket/paket.exe
290+
paket-files/
291+
292+
# FAKE - F# Make
293+
.fake/
294+
295+
# JetBrains Rider
296+
.idea/
297+
*.sln.iml
298+
299+
# CodeRush
300+
.cr/
301+
302+
# Python Tools for Visual Studio (PTVS)
303+
__pycache__/
304+
*.pyc
305+
306+
# Cake - Uncomment if you are using it
307+
# tools/**
308+
# !tools/packages.config
309+
310+
# Tabs Studio
311+
*.tss
312+
313+
# Telerik's JustMock configuration file
314+
*.jmconfig
315+
316+
# BizTalk build output
317+
*.btp.cs
318+
*.btm.cs
319+
*.odx.cs
320+
*.xsd.cs
321+
322+
# OpenCover UI analysis results
323+
OpenCover/
324+
325+
# Azure Stream Analytics local run output
326+
ASALocalRun/
327+
328+
# MSBuild Binary and Structured Log
329+
*.binlog
330+
331+
# NVidia Nsight GPU debugger configuration file
332+
*.nvuser
333+
334+
# MFractors (Xamarin productivity tool) working folder
335+
.mfractor/

Core/.gitkeep

Whitespace-only changes.

Core/Api/src/Adesso.Dapr.Core.Api.Abstraction/obj/Debug/net7.0/Adesso.Dapr.Core.Api.Abstraction.AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("Adesso.Dapr.Core.Api.Abstraction")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bc044fcba6164d46d9a8f8b5d9e4b8c8ac93c8f9")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5e564a1fe972c176b273654ad6602804fc539be9")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("Adesso.Dapr.Core.Api.Abstraction")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("Adesso.Dapr.Core.Api.Abstraction")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30bac2ba3ffe01df74200f687a170e31f9a7295f858a7d4b29e7ead922cfe7b9
1+
c36d71d408f90e0e712871ba8c31f14001d494517565364c4378016af69870d8
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"documents":{"C:\\Users\\ccakir\\Desktop\\DEV\\OKR\\dapr\\dapr-samples\\*":"https://raw.githubusercontent.com/adessoTurkey-dotNET/dapr-samples/bc044fcba6164d46d9a8f8b5d9e4b8c8ac93c8f9/*"}}
1+
{"documents":{"C:\\Users\\ccakir\\Desktop\\DEV\\OKR\\dapr\\dapr-samples\\*":"https://raw.githubusercontent.com/adessoTurkey-dotNET/dapr-samples/5e564a1fe972c176b273654ad6602804fc539be9/*"}}

Core/Api/src/Adesso.Dapr.Core.Api/obj/Debug/net7.0/Adesso.Dapr.Core.Api.AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("Adesso.Dapr.Core.Api")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+bc044fcba6164d46d9a8f8b5d9e4b8c8ac93c8f9")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5e564a1fe972c176b273654ad6602804fc539be9")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("Adesso.Dapr.Core.Api")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("Adesso.Dapr.Core.Api")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
81317244804dbfd0e37749701f290ecc9754528ccb04fa898dec9c722988523f
1+
e3bff6b8a853b0d74e89ec1f8224314724f95a31122c1811b3e734d65feee225

0 commit comments

Comments
 (0)