Skip to content

Commit c643b91

Browse files
sakshamg1304Varun Malhotra
authored and
Varun Malhotra
committed
chore: Release ready, added mandatory non source-code files
1 parent 102b504 commit c643b91

File tree

11 files changed

+1251
-0
lines changed

11 files changed

+1251
-0
lines changed

.gitignore

Lines changed: 360 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,360 @@
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+
# User-specific files
8+
*.rsuser
9+
*.suo
10+
*.user
11+
*.userosscache
12+
*.sln.docstates
13+
14+
# User-specific files (MonoDevelop/Xamarin Studio)
15+
*.userprefs
16+
17+
# Mono auto generated files
18+
mono_crash.*
19+
20+
# Build results
21+
[Dd]ebug/
22+
[Dd]ebugPublic/
23+
[Rr]elease/
24+
[Rr]eleases/
25+
x64/
26+
x86/
27+
[Aa][Rr][Mm]/
28+
[Aa][Rr][Mm]64/
29+
bld/
30+
[Bb]in/
31+
[Oo]bj/
32+
[Ll]og/
33+
34+
# Visual Studio 2015/2017 cache/options directory
35+
.vs/
36+
# Uncomment if you have tasks that create the project's static files in wwwroot
37+
#wwwroot/
38+
39+
# Visual Studio 2017 auto generated files
40+
Generated\ Files/
41+
42+
# MSTest test Results
43+
[Tt]est[Rr]esult*/
44+
[Bb]uild[Ll]og.*
45+
46+
# NUnit
47+
*.VisualState.xml
48+
TestResult.xml
49+
nunit-*.xml
50+
51+
# Build Results of an ATL Project
52+
[Dd]ebugPS/
53+
[Rr]eleasePS/
54+
dlldata.c
55+
56+
# Benchmark Results
57+
BenchmarkDotNet.Artifacts/
58+
59+
# .NET Core
60+
project.lock.json
61+
project.fragment.lock.json
62+
artifacts/
63+
64+
# StyleCop
65+
StyleCopReport.xml
66+
67+
# Files built by Visual Studio
68+
*_i.c
69+
*_p.c
70+
*_h.h
71+
*.ilk
72+
*.meta
73+
*.obj
74+
*.iobj
75+
*.pch
76+
*.pdb
77+
*.ipdb
78+
*.pgc
79+
*.pgd
80+
*.rsp
81+
*.sbr
82+
*.tlb
83+
*.tli
84+
*.tlh
85+
*.tmp
86+
*.tmp_proj
87+
*_wpftmp.csproj
88+
*.log
89+
*.vspscc
90+
*.vssscc
91+
.builds
92+
*.pidb
93+
*.svclog
94+
*.scc
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+
*.snupkg
188+
# The packages folder can be ignored because of Package Restore
189+
**/[Pp]ackages/*
190+
# except build/, which is used as an MSBuild target.
191+
!**/[Pp]ackages/build/
192+
# Uncomment if necessary however generally it will be regenerated when needed
193+
#!**/[Pp]ackages/repositories.config
194+
# NuGet v3's project.json files produces more ignorable files
195+
*.nuget.props
196+
*.nuget.targets
197+
198+
# Microsoft Azure Build Output
199+
csx/
200+
*.build.csdef
201+
202+
# Microsoft Azure Emulator
203+
ecf/
204+
rcf/
205+
206+
# Windows Store app package directories and files
207+
AppPackages/
208+
BundleArtifacts/
209+
Package.StoreAssociation.xml
210+
_pkginfo.txt
211+
*.appx
212+
*.appxbundle
213+
*.appxupload
214+
215+
# Visual Studio cache files
216+
# files ending in .cache can be ignored
217+
*.[Cc]ache
218+
# but keep track of directories ending in .cache
219+
!?*.[Cc]ache/
220+
221+
# Others
222+
ClientBin/
223+
~$*
224+
*~
225+
*.dbmdl
226+
*.dbproj.schemaview
227+
*.jfm
228+
*.pfx
229+
*.publishsettings
230+
orleans.codegen.cs
231+
232+
# Including strong name files can present a security risk
233+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
234+
#*.snk
235+
236+
# Since there are multiple workflows, uncomment next line to ignore bower_components
237+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
238+
#bower_components/
239+
240+
# RIA/Silverlight projects
241+
Generated_Code/
242+
243+
# Backup & report files from converting an old project file
244+
# to a newer Visual Studio version. Backup files are not needed,
245+
# because we have git ;-)
246+
_UpgradeReport_Files/
247+
Backup*/
248+
UpgradeLog*.XML
249+
UpgradeLog*.htm
250+
ServiceFabricBackup/
251+
*.rptproj.bak
252+
253+
# SQL Server files
254+
*.mdf
255+
*.ldf
256+
*.ndf
257+
258+
# Business Intelligence projects
259+
*.rdl.data
260+
*.bim.layout
261+
*.bim_*.settings
262+
*.rptproj.rsuser
263+
*- [Bb]ackup.rdl
264+
*- [Bb]ackup ([0-9]).rdl
265+
*- [Bb]ackup ([0-9][0-9]).rdl
266+
267+
# Microsoft Fakes
268+
FakesAssemblies/
269+
270+
# GhostDoc plugin setting file
271+
*.GhostDoc.xml
272+
273+
# Node.js Tools for Visual Studio
274+
.ntvs_analysis.dat
275+
node_modules/
276+
277+
# Visual Studio 6 build log
278+
*.plg
279+
280+
# Visual Studio 6 workspace options file
281+
*.opt
282+
283+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
284+
*.vbw
285+
286+
# Visual Studio LightSwitch build output
287+
**/*.HTMLClient/GeneratedArtifacts
288+
**/*.DesktopClient/GeneratedArtifacts
289+
**/*.DesktopClient/ModelManifest.xml
290+
**/*.Server/GeneratedArtifacts
291+
**/*.Server/ModelManifest.xml
292+
_Pvt_Extensions
293+
294+
# Paket dependency manager
295+
.paket/paket.exe
296+
paket-files/
297+
298+
# FAKE - F# Make
299+
.fake/
300+
301+
# CodeRush personal settings
302+
.cr/personal
303+
304+
# Python Tools for Visual Studio (PTVS)
305+
__pycache__/
306+
*.pyc
307+
308+
# Cake - Uncomment if you are using it
309+
# tools/**
310+
# !tools/packages.config
311+
312+
# Tabs Studio
313+
*.tss
314+
315+
# Telerik's JustMock configuration file
316+
*.jmconfig
317+
318+
# BizTalk build output
319+
*.btp.cs
320+
*.btm.cs
321+
*.odx.cs
322+
*.xsd.cs
323+
324+
# OpenCover UI analysis results
325+
OpenCover/
326+
327+
# Azure Stream Analytics local run output
328+
ASALocalRun/
329+
330+
# MSBuild Binary and Structured Log
331+
*.binlog
332+
333+
# NVidia Nsight GPU debugger configuration file
334+
*.nvuser
335+
336+
# MFractors (Xamarin productivity tool) working folder
337+
.mfractor/
338+
339+
# Local History for Visual Studio
340+
.localhistory/
341+
342+
# BeatPulse healthcheck temp database
343+
healthchecksdb
344+
345+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
346+
MigrationBackup/
347+
348+
# Ionide (cross platform F# VS Code tools) working folder
349+
.ionide/
350+
351+
.vscode/
352+
tools/
353+
.DS_STORE
354+
355+
coverage-html
356+
coverage.json
357+
coverage.hits
358+
359+
VWOSdk.DemoApp/
360+
/.editorconfig.inferred

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [1.0.0] - 2024-08-06
10+
11+
### Added
12+
13+
- First release of VWO Feature Management and Experimentation capabilities

0 commit comments

Comments
 (0)