Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Commit 9b6202f

Browse files
committed
Initial commit
0 parents  commit 9b6202f

File tree

191 files changed

+22631
-0
lines changed

Some content is hidden

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

191 files changed

+22631
-0
lines changed

.gitignore

+238
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
develop-eggs/
12+
dist/
13+
downloads/
14+
eggs/
15+
.eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
wheels/
22+
pip-wheel-metadata/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
db.sqlite3-journal
62+
63+
# Flask stuff:
64+
instance/
65+
.webassets-cache
66+
67+
# Scrapy stuff:
68+
.scrapy
69+
70+
# Sphinx documentation
71+
docs/_build/
72+
73+
# PyBuilder
74+
target/
75+
76+
# Jupyter Notebook
77+
.ipynb_checkpoints
78+
79+
# IPython
80+
profile_default/
81+
ipython_config.py
82+
83+
# pyenv
84+
.python-version
85+
86+
# pipenv
87+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
88+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
89+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
90+
# install all needed dependencies.
91+
#Pipfile.lock
92+
93+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
94+
__pypackages__/
95+
96+
# Celery stuff
97+
celerybeat-schedule
98+
celerybeat.pid
99+
100+
# SageMath parsed files
101+
*.sage.py
102+
103+
# Environments
104+
.env
105+
.venv
106+
env/
107+
venv/
108+
ENV/
109+
env.bak/
110+
venv.bak/
111+
112+
# Spyder project settings
113+
.spyderproject
114+
.spyproject
115+
116+
# Rope project settings
117+
.ropeproject
118+
119+
# mkdocs documentation
120+
/site
121+
122+
# mypy
123+
.mypy_cache/
124+
.dmypy.json
125+
dmypy.json
126+
127+
# Pyre type checker
128+
.pyre/
129+
130+
# Pycharm
131+
.idea/
132+
133+
# User-specific files
134+
*.suo
135+
*.user
136+
*.userosscache
137+
*.sln.docstates
138+
139+
# User-specific files (MonoDevelop/Xamarin Studio)
140+
*.userprefs
141+
142+
# Build results
143+
[Dd]ebug/
144+
[Dd]ebugPublic/
145+
[Rr]elease/
146+
[Rr]eleases/
147+
x64/
148+
x86/
149+
bld/
150+
[Bb]in/
151+
[Oo]bj/
152+
[Ll]og/
153+
154+
# Visual Studio 2015/2017 cache/options directory
155+
.vs/
156+
# Uncomment if you have tasks that create the project's static files in wwwroot
157+
#wwwroot/
158+
159+
# Visual Studio 2017 auto generated files
160+
Generated\ Files/
161+
162+
# MSTest test Results
163+
[Tt]est[Rr]esult*/
164+
[Bb]uild[Ll]og.*
165+
166+
# NUNIT
167+
*.VisualState.xml
168+
TestResult.xml
169+
170+
# Build Results of an ATL Project
171+
[Dd]ebugPS/
172+
[Rr]eleasePS/
173+
dlldata.c
174+
175+
# Benchmark Results
176+
BenchmarkDotNet.Artifacts/
177+
178+
# .NET Core
179+
project.lock.json
180+
project.fragment.lock.json
181+
artifacts/
182+
183+
# StyleCop
184+
StyleCopReport.xml
185+
186+
# Files built by Visual Studio
187+
*_i.c
188+
*_p.c
189+
*_i.h
190+
*.ilk
191+
*.meta
192+
*.obj
193+
*.iobj
194+
*.pch
195+
*.pdb
196+
*.ipdb
197+
*.pgc
198+
*.pgd
199+
*.rsp
200+
*.sbr
201+
*.tlb
202+
*.tli
203+
*.tlh
204+
*.tmp
205+
*.tmp_proj
206+
*.log
207+
*.vspscc
208+
*.vssscc
209+
.builds
210+
*.pidb
211+
*.svclog
212+
*.scc
213+
214+
# Chutzpah Test files
215+
_Chutzpah*
216+
217+
# Visual C++ cache files
218+
ipch/
219+
*.aps
220+
*.ncb
221+
*.opendb
222+
*.opensdf
223+
*.sdf
224+
*.cachefile
225+
*.VC.db
226+
*.VC.VC.opendb
227+
228+
# Visual Studio profiler
229+
*.psess
230+
*.vsp
231+
*.vspx
232+
*.sap
233+
234+
# Visual Studio Trace Files
235+
*.e2e
236+
237+
# Nuget package cache
238+
packages/

EchoRelay.App/EchoRelay.App.csproj

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net7.0-windows</TargetFramework>
6+
<Nullable>enable</Nullable>
7+
<UseWindowsForms>true</UseWindowsForms>
8+
<ImplicitUsings>enable</ImplicitUsings>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<ProjectReference Include="..\EchoRelay.Core\EchoRelay.Core.csproj" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<Compile Update="Properties\Resources.Designer.cs">
17+
<DesignTime>True</DesignTime>
18+
<AutoGen>True</AutoGen>
19+
<DependentUpon>Resources.resx</DependentUpon>
20+
</Compile>
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<EmbeddedResource Update="Properties\Resources.resx">
25+
<Generator>ResXFileCodeGenerator</Generator>
26+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
27+
</EmbeddedResource>
28+
</ItemGroup>
29+
30+
</Project>

EchoRelay.App/Forms/Controls/AccessControlListEditor.Designer.cs

+98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)